Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/tasks/lib/components/user_bottom_sheet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class _UserBottomSheetState extends State<UserBottomSheet> {
return LoadingFutureBuilder(
loadingWidget: const SizedBox(),
future:
WardService().getWardOverviews(organizationId: currentWardController.currentWard!.organizationId),
WardService().getWardOverviews(organizationId: currentWardController.currentWard?.organizationId),
thenWidgetBuilder: (BuildContext context, List<WardOverview> data) {
double menuWidth = min(250, width * 0.7);
return PopupMenuButton(
Expand Down