Skip to content

Commit ae66cc1

Browse files
Improve message
1 parent d878258 commit ae66cc1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

JournalApp/Data/AppDataService.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ public async Task<bool> StartImportWizard(IDialogService dialogService, string p
99
logger.LogInformation("Starting import wizard");
1010

1111
// Warn if an export wasn't done in the last week.
12-
if (DateTimeOffset.Now > LastExportDate.AddDays(7) && await dialogService.ShowCustomMessageBox(string.Empty, "It's recommended to export your data first", yesText: "Continue anyway", cancelText: "Go back") == null)
12+
if (DateTimeOffset.Now > LastExportDate.AddDays(7) &&
13+
await dialogService.ShowCustomMessageBox(string.Empty, "It's recommended to export your data first. You can do this in Settings.", yesText: "Continue anyway", cancelText: "Go back") == null)
1314
{
1415
logger.LogDebug("User didn't want to import after being warned about export");
1516
return false;

0 commit comments

Comments
 (0)