CreateWorkspace typo fix (#8146)

Follow up of #8115
This commit is contained in:
BOHEUS
2024-10-28 13:13:57 +00:00
committed by GitHub
parent 28815f54fe
commit f9779c4b5e
2 changed files with 2 additions and 2 deletions

View File

@@ -115,7 +115,7 @@ export const PageChangeEffect = () => {
break;
}
case isMatchingLocation(AppPath.CreateWorkspace): {
setHotkeyScope(PageHotkeyScope.CreateWokspace);
setHotkeyScope(PageHotkeyScope.CreateWorkspace);
break;
}
case isMatchingLocation(AppPath.SyncEmails): {

View File

@@ -1,6 +1,6 @@
export enum PageHotkeyScope {
Settings = 'settings',
CreateWokspace = 'create-workspace',
CreateWorkspace = 'create-workspace',
SignInUp = 'sign-in-up',
CreateProfile = 'create-profile',
InviteTeam = 'invite-team',