migration done

This commit is contained in:
Fabian Freund
2025-09-19 11:50:34 +02:00
parent b01012c76c
commit 79da47d11b
198 changed files with 17341 additions and 15711 deletions
@@ -41,11 +41,11 @@ class BangGroupListTile extends HookConsumerWidget {
@override
Widget build(BuildContext context, WidgetRef ref) {
final lastSync = ref.watch(
lastSyncOfGroupProvider(group).select((value) => value.valueOrNull),
lastSyncOfGroupProvider(group).select((value) => value.value),
);
final count = ref.watch(
bangCountOfGroupProvider(group).select((value) => value.valueOrNull),
bangCountOfGroupProvider(group).select((value) => value.value),
);
return CustomListTile(
@@ -31,7 +31,7 @@ class BangIcon extends ConsumerWidget {
@override
Widget build(BuildContext context, WidgetRef ref) {
final bang = ref.watch(
bangDataProvider(trigger).select((value) => value.valueOrNull),
bangDataProvider(trigger).select((value) => value.value),
);
return UrlIcon([
@@ -32,7 +32,7 @@ class DefaultSearchSelector extends HookConsumerWidget {
@override
Widget build(BuildContext context, WidgetRef ref) {
final activeBang = ref.watch(
defaultSearchBangDataProvider.select((value) => value.valueOrNull),
defaultSearchBangDataProvider.select((value) => value.value),
);
final availableBangs = ref.watch(frequentBangListProvider);