Skip to content

Commit

Permalink
fix: added props descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
barttom committed Jan 11, 2024
1 parent 6742591 commit b5cd316
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ import type {FormValues} from '@src/types/onyx/Form';
import Enable2FACard from './Enable2FACard';

type BankAccountValidationFormProps = {
/** Bank account currently in setup */
reimbursementAccount: ReimbursementAccount;

/** Boolean required to display Enable2FACard component */
requiresTwoFactorAuth: boolean;
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ import type {ReimbursementAccount} from '@src/types/onyx';
import Enable2FACard from './Enable2FACard';

type FinishChatCardProps = {
requiresTwoFactorAuth: boolean;
/** Bank account currently in setup */
reimbursementAccount: ReimbursementAccount;

/** Boolean required to display Enable2FACard component */
requiresTwoFactorAuth: boolean;
};

function FinishChatCard({requiresTwoFactorAuth, reimbursementAccount}: FinishChatCardProps) {
Expand Down

0 comments on commit b5cd316

Please sign in to comment.