From bd74c60a82dd70b2a1ad1e5714c4ee0ff5bd242b Mon Sep 17 00:00:00 2001 From: dfahlander Date: Sat, 28 Oct 2023 00:31:08 +0200 Subject: [PATCH] Formatting --- addons/dexie-cloud/src/types/DXCAlert.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/addons/dexie-cloud/src/types/DXCAlert.ts b/addons/dexie-cloud/src/types/DXCAlert.ts index 4ea23bc09..2af850e1a 100644 --- a/addons/dexie-cloud/src/types/DXCAlert.ts +++ b/addons/dexie-cloud/src/types/DXCAlert.ts @@ -3,10 +3,7 @@ export type DXCAlert = DXCErrorAlert | DXCWarningAlert | DXCInfoAlert; export interface DXCErrorAlert { type: 'error'; - messageCode: 'INVALID_OTP' | - 'INVALID_EMAIL' | - 'LICENSE_LIMIT_REACHED' | - 'GENERIC_ERROR'; + messageCode: 'INVALID_OTP' | 'INVALID_EMAIL' | 'LICENSE_LIMIT_REACHED' | 'GENERIC_ERROR'; message: string; messageParams: { [paramName: string]: string; }; }