Skip to content

Commit 8d60c4b

Browse files
committed
style: fix style
1 parent 35954c8 commit 8d60c4b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

frontend/src/lib/components/FileNavigation.svelte

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,10 @@
7070
}
7171
// TODO: requisite backend work, eg create DELETE
7272
// handler for documents.
73-
const r = await fetch(`${apiAddress}/api/doc?path=${path}`, {method: "DELETE", credentials: "include"});
73+
const r = await fetch(`${apiAddress}/api/doc?path=${path}`, {
74+
method: 'DELETE',
75+
credentials: 'include'
76+
});
7477
if (r.ok) {
7578
addToast({
7679
message: `The file "${path}" was deleted successfully."`,

0 commit comments

Comments
 (0)