Finish mailboxes view

This commit is contained in:
Johannes Zellner
2025-03-14 18:48:13 +01:00
parent 44b02961ac
commit 9676cabcb8
17 changed files with 377 additions and 49 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ function create() {
async remove(id) {
let error, result;
try {
result = await fetcher.del(`${API_ORIGIN}/api/v1/tokens/${id}`, { access_token: accessToken });
result = await fetcher.del(`${API_ORIGIN}/api/v1/tokens/${id}`, null, { access_token: accessToken });
} catch (e) {
error = e;
}