Fix string interpolation bugs

This commit is contained in:
Robert McRackan 2022-11-14 15:16:22 -05:00
parent 7575736991
commit bce44b6f6d
6 changed files with 22 additions and 8 deletions

View file

@ -247,7 +247,8 @@ namespace LibationAvalonia.ViewModels
var result = await MessageBox.ShowConfirmationDialog(
null,
libraryBooks,
$"Are you sure you want to remove {selectedBooks.Count} books from Libation's library?",
// do not use `$` string interpolation. See impl.
"Are you sure you want to remove {0} from Libation's library?",
"Remove books from Libation?");
if (result != DialogResult.Yes)