From b7e93655976c4a6f1f5f10d9662cae3d7211574e Mon Sep 17 00:00:00 2001 From: Anthony Shew Date: Sun, 14 Jan 2024 22:33:09 -0700 Subject: [PATCH] Remove string mention. --- libs/client/shared/src/hooks/useModalManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/client/shared/src/hooks/useModalManager.ts b/libs/client/shared/src/hooks/useModalManager.ts index 66c9a773..20d8de79 100644 --- a/libs/client/shared/src/hooks/useModalManager.ts +++ b/libs/client/shared/src/hooks/useModalManager.ts @@ -1,6 +1,6 @@ import { createContext, useContext } from 'react' -export type ModalKey = 'linkAuth0Accounts' +export type ModalKey = 'linkAccounts' export type ModalManagerAction = | { type: 'open'; key: ModalKey; props: any } | { type: 'close'; key: ModalKey }