Skip to content

Commit

Permalink
Fix setup help text typo (#7484)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobbe committed Jan 28, 2023
1 parent 8f10985 commit 5cc67df
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/cli/src/commands/setup/auth/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export async function builder(yargs) {
// Auth providers we support
.command(
'auth0',
'Set up auth for for Auth0',
'Set up auth for Auth0',
(yargs) => standardAuthBuilder(yargs),
async (args) => {
const handler = await getAuthHandler('@redwoodjs/auth-auth0-setup')
Expand All @@ -40,7 +40,7 @@ export async function builder(yargs) {
)
.command(
'azure-active-directory',
'Set up auth for for Azure Active Directory',
'Set up auth for Azure Active Directory',
(yargs) => standardAuthBuilder(yargs),
async (args) => {
const handler = await getAuthHandler(
Expand All @@ -52,7 +52,7 @@ export async function builder(yargs) {
)
.command(
'clerk',
'Set up auth for for Clerk',
'Set up auth for Clerk',
(yargs) => standardAuthBuilder(yargs),
async (args) => {
const handler = await getAuthHandler('@redwoodjs/auth-clerk-setup')
Expand All @@ -72,7 +72,7 @@ export async function builder(yargs) {
)
.command(
'dbAuth',
'Set up auth for for dbAuth',
'Set up auth for dbAuth',
(yargs) => {
return standardAuthBuilder(yargs).option('webauthn', {
alias: 'w',
Expand All @@ -89,7 +89,7 @@ export async function builder(yargs) {
)
.command(
'firebase',
'Set up auth for for Firebase',
'Set up auth for Firebase',
(yargs) => standardAuthBuilder(yargs),
async (args) => {
const handler = await getAuthHandler('@redwoodjs/auth-firebase-setup')
Expand All @@ -99,7 +99,7 @@ export async function builder(yargs) {
)
.command(
'netlify',
'Set up auth for for Netlify',
'Set up auth for Netlify',
(yargs) => standardAuthBuilder(yargs),
async (args) => {
const handler = await getAuthHandler('@redwoodjs/auth-netlify-setup')
Expand All @@ -109,7 +109,7 @@ export async function builder(yargs) {
)
.command(
'supabase',
'Set up auth for for Supabase',
'Set up auth for Supabase',
(yargs) => standardAuthBuilder(yargs),
async (args) => {
const handler = await getAuthHandler('@redwoodjs/auth-supabase-setup')
Expand Down

0 comments on commit 5cc67df

Please sign in to comment.