fix phone dashboard
This commit is contained in:
@@ -17,7 +17,14 @@ class CustomerDetailScreen extends ConsumerWidget {
|
||||
Widget build(BuildContext context, WidgetRef ref) {
|
||||
final async = ref.watch(customerDetailProvider(id));
|
||||
final reservationsAsync = ref.watch(
|
||||
reservationsProvider({'customerId': id, 'page': 1, 'pageSize': 10}),
|
||||
reservationsProvider((
|
||||
page: 1,
|
||||
pageSize: 10,
|
||||
status: null,
|
||||
source: null,
|
||||
search: null,
|
||||
customerId: id,
|
||||
)),
|
||||
);
|
||||
|
||||
return async.when(
|
||||
|
||||
Reference in New Issue
Block a user