Skip to content

Commit

Permalink
fix(clerk-js): Apply minor copywriting fixes - pt2
Browse files Browse the repository at this point in the history
  • Loading branch information
SokratisVidros committed Jun 3, 2022
1 parent 4a1dab4 commit 49c128b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/clerk-js/src/ui/signIn/SignInFactorOne.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ describe('<SignInFactorOne/>', () => {

render(<SignInFactorOne />);

screen.getByText(/no available authentication method/);
screen.getByText(/no available authentication factor/);
});
});
});
2 changes: 1 addition & 1 deletion packages/clerk-js/src/ui/signIn/SignInFactorOne.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function _SignInFactorOne(): JSX.Element {
};

if (!currentFactor && signIn.status) {
return <ErrorScreen message="Cannot proceed with sign in. There's no available authentication method." />;
return <ErrorScreen message="Cannot proceed with sign in. There's no available authentication factor." />;
}

if (!currentFactor) {
Expand Down

0 comments on commit 49c128b

Please sign in to comment.