Skip to content

Commit

Permalink
rephrase auto association line
Browse files Browse the repository at this point in the history
  • Loading branch information
eliyabar committed Nov 21, 2023
1 parent 4dbbe5e commit b8990d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/core/src/login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,13 +174,13 @@ export const login = async (dataDir: string, loginUrl: string, lcUrl: string, cl
{
type: 'input',
name: 'orgName',
message: 'Select name for your organization',
message: 'Select a name for your organization',
default: postLoginData.organizationDomainDetails.name,
},
{
type: 'confirm',
name: 'associateDomain',
message: `Allow anyone with ${postLoginData.organizationDomainDetails.domain || 'your'} email address to join your organization as viewers`,
message: `Allow anyone with @${postLoginData.organizationDomainDetails.domain} email domain to join your organization as viewers`,
default: true,
},
])
Expand All @@ -201,7 +201,7 @@ export const login = async (dataDir: string, loginUrl: string, lcUrl: string, cl
}
),
{
opPrefix: 'Processing',
opPrefix: 'Creating organization',
successText: 'Done!',
}
)
Expand Down

0 comments on commit b8990d4

Please sign in to comment.