Skip to content

Commit

Permalink
fix(clerk auth): remove errant comma in post-setup notes (#9661)
Browse files Browse the repository at this point in the history
Corrects the `packages/auth-providers/clerk/setup/src/setupHandler.ts`
for errant comma in the post setup notes of the clerk setup command.
  • Loading branch information
swrichards authored Dec 13, 2023
1 parent cc69243 commit a231840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/auth-providers/clerk/setup/src/setupHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const handler = async ({ force: forceArg }: Args) => {
'',
'```toml title="redwood.toml"',
'includeEnvironmentVariables = [',
' "CLERK_PUBLISHABLE_KEY,"',
' "CLERK_PUBLISHABLE_KEY"',
']',
'```',
'',
Expand Down

0 comments on commit a231840

Please sign in to comment.