From 1a71f509147917e6c0e52da0a6f3aa7b2a4a75e2 Mon Sep 17 00:00:00 2001 From: LandaMm Date: Sun, 15 Jun 2025 21:05:03 +0200 Subject: [PATCH] fix: 'boolean' instead of 'bool' --- web/src/store/admin/apiServices.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/store/admin/apiServices.ts b/web/src/store/admin/apiServices.ts index 64907e2..baad0ed 100644 --- a/web/src/store/admin/apiServices.ts +++ b/web/src/store/admin/apiServices.ts @@ -22,7 +22,7 @@ interface IApiServicesState { fetch: () => Promise; fetchSingle: (id: string) => Promise; - create: (req: CreateApiServiceRequest) => Promise; + create: (req: CreateApiServiceRequest) => Promise; resetCredentials: () => void; toggling: boolean;