Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Internal QA]: Fix bank selection error #53551

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/languages/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3311,6 +3311,7 @@ const translations = {
error: {
pleaseSelectProvider: 'Please select a card provider before continuing.',
pleaseSelectBankAccount: 'Please select a bank account before continuing.',
pleaseSelectBank: 'Please select a bank before continuing.',
pleaseSelectFeedType: 'Please select a feed type before continuing.',
},
},
Expand Down
1 change: 1 addition & 0 deletions src/languages/es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3351,6 +3351,7 @@ const translations = {
error: {
pleaseSelectProvider: 'Seleccione un proveedor de tarjetas antes de continuar.',
pleaseSelectBankAccount: 'Seleccione una cuenta bancaria antes de continuar.',
pleaseSelectBank: 'Seleccione una bancaria antes de continuar.',
pleaseSelectFeedType: 'Seleccione un tipo de pienso antes de continuar.',
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function SelectBankStep() {
<View style={[styles.ph5, styles.mb3]}>
<FormHelpMessage
isError={hasError}
message={translate('workspace.companyCards.addNewCard.error.pleaseSelectBankAccount')}
message={translate('workspace.companyCards.addNewCard.error.pleaseSelectBank')}
/>
</View>
)}
Expand Down
Loading