Skip to content

Commit

Permalink
fix(web): Fix typo for ClerkProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
SokratisVidros committed Oct 25, 2024
1 parent f94184f commit dc51c99
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions apps/dashboard/src/context/clerk-provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const CLERK_LOCALIZATION = {
action__signOutAll: 'Log out from all accounts',
action__manageAccount: 'Settings',
},
formFieldLabel__organizationSlug: 'URL friendly identifier',
};

const ALLOWED_REDIRECT_ORIGINS = ['http://localhost:*', window.location.origin];
Expand All @@ -37,9 +38,6 @@ export const ClerkProvider = (props: ClerkProviderProps) => {
routerPush={(to) => navigate(to)}
routerReplace={(to) => navigate(to, { replace: true })}
publishableKey={CLERK_PUBLISHABLE_KEY}
localization={{
formFieldLabel__organizationSlug: 'URL friendly identifier',
}}
appearance={{
userButton: {
elements: {
Expand Down

0 comments on commit dc51c99

Please sign in to comment.