Sync Configuration Fix

Russian translations off-by-one until f8f8c74e3d. Cast {count} in "all:' translation was breaking code. Fixing translation negates need for "as String" modifier. This fixes white screen when opening Sync Configuration from Settings.
This commit is contained in:
Rescue9
2026-02-27 12:32:10 -06:00
parent ad8d1bd172
commit 57175c64f1
@@ -359,7 +359,7 @@ class _SyncFilterBottomSheetState extends State<SyncFilterBottomSheet> {
subtitle: Text(
count > 0
? "$count ${localization.selected}"
: localization.all as String,
: localization.all,
),
trailing: const Icon(Icons.arrow_forward_ios, size: 16),
onTap: onTap,