mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-23 00:26:33 +00:00
format guided tour js with prettier
This commit is contained in:
parent
0e9dc66ffa
commit
f8e51b5826
1 changed files with 6 additions and 6 deletions
|
@ -5,12 +5,12 @@
|
|||
*/
|
||||
|
||||
function disableGuidedTour(csrf_token) {
|
||||
fetch('/guided-tour/False', {
|
||||
fetch("/guided-tour/False", {
|
||||
headers: {
|
||||
'X-CSRFToken': csrf_token,
|
||||
"X-CSRFToken": csrf_token,
|
||||
},
|
||||
method: 'POST',
|
||||
redirect: 'follow',
|
||||
mode: 'same-origin',
|
||||
})
|
||||
method: "POST",
|
||||
redirect: "follow",
|
||||
mode: "same-origin",
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue