From 5845036900564d9854de04190c60933b5ff02ab3 Mon Sep 17 00:00:00 2001 From: mrjvs Date: Fri, 24 Nov 2023 22:17:55 +0100 Subject: [PATCH] remove completed todo --- src/stores/auth/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/auth/index.ts b/src/stores/auth/index.ts index e2f18172..aeb32e80 100644 --- a/src/stores/auth/index.ts +++ b/src/stores/auth/index.ts @@ -21,7 +21,7 @@ export type AccountWithToken = Account & { interface AuthStore { account: null | AccountWithToken; backendUrl: null | string; - proxySet: null | string[]; // TODO actually use these settings + proxySet: null | string[]; removeAccount(): void; setAccount(acc: AccountWithToken): void; updateDeviceName(deviceName: string): void;