Skip to content

Commit

Permalink
Fix name of component
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham1206agra committed Oct 2, 2024
1 parent 7042d0a commit 1be2186
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/MissingPersonalDetails/substeps/Confirmation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import INPUT_IDS from '@src/types/form/PersonalDetailsForm';

const PERSONAL_DETAILS_STEP_INDEXES = CONST.MISSING_PERSONAL_DETAILS_INDEXES.MAPPING;

function Confirmation({personalDetailsValues: values, onNext, onMove}: CustomSubStepProps) {
function ConfirmationStep({personalDetailsValues: values, onNext, onMove}: CustomSubStepProps) {
const {translate} = useLocalize();
const styles = useThemeStyles();
const {isOffline} = useNetwork();
Expand Down Expand Up @@ -77,6 +77,6 @@ function Confirmation({personalDetailsValues: values, onNext, onMove}: CustomSub
);
}

Confirmation.displayName = 'ConfirmationStep';
ConfirmationStep.displayName = 'ConfirmationStep';

export default Confirmation;
export default ConfirmationStep;

0 comments on commit 1be2186

Please sign in to comment.