diff --git a/apps/mobile/packages/features/staff/shifts/lib/src/presentation/widgets/shift_details/shift_date_time_section.dart b/apps/mobile/packages/features/staff/shifts/lib/src/presentation/widgets/shift_details/shift_date_time_section.dart index 76dec5f5..67e8b4b5 100644 --- a/apps/mobile/packages/features/staff/shifts/lib/src/presentation/widgets/shift_details/shift_date_time_section.dart +++ b/apps/mobile/packages/features/staff/shifts/lib/src/presentation/widgets/shift_details/shift_date_time_section.dart @@ -92,12 +92,12 @@ class ShiftDateTimeSection extends StatelessWidget { ], ), if (endDate != null) ...[ - const SizedBox(height: UiConstants.space4), + const SizedBox(height: UiConstants.space6), Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( - shiftDateLabel, + 'SHIFT END DATE', style: UiTypography.titleUppercase4b.textSecondary, ), const SizedBox(height: UiConstants.space2), @@ -118,7 +118,7 @@ class ShiftDateTimeSection extends StatelessWidget { ], ), ], - const SizedBox(height: UiConstants.space4), + const SizedBox(height: UiConstants.space6), Row( children: [ Expanded(child: _buildTimeBox(clockInLabel, startTime)), diff --git a/apps/mobile/packages/features/staff/shifts/lib/src/presentation/widgets/tabs/find_shifts_tab.dart b/apps/mobile/packages/features/staff/shifts/lib/src/presentation/widgets/tabs/find_shifts_tab.dart index 09565720..f715ee6c 100644 --- a/apps/mobile/packages/features/staff/shifts/lib/src/presentation/widgets/tabs/find_shifts_tab.dart +++ b/apps/mobile/packages/features/staff/shifts/lib/src/presentation/widgets/tabs/find_shifts_tab.dart @@ -210,6 +210,7 @@ class _FindShiftsTabState extends State { location: first.location, locationAddress: first.locationAddress, date: first.date, + endDate: first.endDate, startTime: first.startTime, endTime: first.endTime, createdDate: first.createdDate,