From f658f3c4dba68f0215ddc3c30ee9be6b1ade4f41 Mon Sep 17 00:00:00 2001 From: cynfo3000 Date: Mon, 9 Mar 2026 23:55:45 +0100 Subject: [PATCH] fix: deleteAPIKey this.del statt this.delete (JS-Fehler) --- frontend/src/api/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/api/client.js b/frontend/src/api/client.js index a3f969f..2400973 100644 --- a/frontend/src/api/client.js +++ b/frontend/src/api/client.js @@ -255,7 +255,7 @@ class ApiClient { } deleteAPIKey(id) { - return this.delete(`/api/v1/apikeys/${id}`) + return this.del(`/api/v1/apikeys/${id}`) } // System Settings