We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43f13db commit 1f65d51Copy full SHA for 1f65d51
1 file changed
src/components/ImportSpreadsheetConfirmModal.tsx
@@ -29,7 +29,7 @@ function ImportSpreadsheetConfirmModal({isVisible, closeImportPageAndModal, onMo
29
? translate(spreadsheet.importFinalModal.promptKey, spreadsheet.importFinalModal.promptKeyParams as TranslationParameters<typeof spreadsheet.importFinalModal.promptKey>[0])
30
: '';
31
const pendingText = spreadsheet?.shouldShowPendingMessage ? translate('spreadsheet.importCompanyCardTransactionsPendingMessage') : '';
32
- const fullPromptText = pendingText ? `${promptText}\n\n${pendingText}` : promptText;
+ const fullPromptText = pendingText ? `${promptText} ${pendingText}` : promptText;
33
34
useEffect(() => {
35
if (!isVisible || !titleText || !promptText || !spreadsheet?.importFinalModal) {
0 commit comments