Skip to content

Commit

Permalink
Merge pull request #53551 from callstack-internal/fix-bank-selection-…
Browse files Browse the repository at this point in the history
…error

[Internal QA]: Fix bank selection error
  • Loading branch information
mountiny authored Dec 4, 2024
2 parents 04544cf + c464eed commit d839c4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
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
2 changes: 1 addition & 1 deletion src/pages/workspace/companyCards/addNew/SelectBankStep.tsx
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

0 comments on commit d839c4d

Please sign in to comment.