From 5bbe768acb80f84c6266991e78b21f29b97e28db Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Sun, 26 May 2024 16:06:29 +0530 Subject: [PATCH] Scaffold --- web/packages/shared/apps/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/packages/shared/apps/types.ts b/web/packages/shared/apps/types.ts index 6c6e4fe1a..b2ac97649 100644 --- a/web/packages/shared/apps/types.ts +++ b/web/packages/shared/apps/types.ts @@ -1,6 +1,7 @@ import { TwoFactorType } from "@ente/accounts/constants/twofactor"; import type { DialogBoxAttributesV2 } from "@ente/shared/components/DialogBoxV2/types"; import { APPS } from "./constants"; +import type { AppName } from "@/next/types/app"; export interface PageProps { appContext: { @@ -10,5 +11,6 @@ export interface PageProps { logout: () => void; }; appName: APPS; + appName2?: AppName; twoFactorType?: TwoFactorType; }