Skip to content

Commit

Permalink
ConfirmationCode -> ConfirmationCodeField
Browse files Browse the repository at this point in the history
  • Loading branch information
wlee221 committed Dec 8, 2022
1 parent f658ad2 commit 68cafa2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { useAuth } from '../../../internal';
import { View, Flex } from '../../../primitives';
import { ComponentClassName } from '../types';
import {
ConfirmationCode,
ConfirmationCodeField,
CopyButton,
ErrorMessage,
QRCodeImage,
Expand Down Expand Up @@ -147,7 +147,7 @@ function SetupTOTP({
>
{copyCodeText}
</CopyButton>
<ConfirmationCode
<ConfirmationCodeField
alignSelf="stretch"
isRequired
label="Confirmation Code"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
TextFieldComponent,
} from '../types';

export const ConfirmationCode: TextFieldComponent = (props) => (
export const ConfirmationCodeField: TextFieldComponent = (props) => (
<TextField {...props} />
);

Expand Down

0 comments on commit 68cafa2

Please sign in to comment.