diff --git a/apps/mobile/packages/features/staff/clock_in/lib/src/presentation/widgets/clock_in_action_section.dart b/apps/mobile/packages/features/staff/clock_in/lib/src/presentation/widgets/clock_in_action_section.dart index 54173ba9..292afac0 100644 --- a/apps/mobile/packages/features/staff/clock_in/lib/src/presentation/widgets/clock_in_action_section.dart +++ b/apps/mobile/packages/features/staff/clock_in/lib/src/presentation/widgets/clock_in_action_section.dart @@ -105,21 +105,21 @@ class ClockInActionSection extends StatelessWidget { /// Builds the action widget for an active (not completed) shift. Widget _buildActiveShiftAction(BuildContext context) { - // if (!isCheckedIn && !ClockInHelpers.isCheckInAllowed(selectedShift!)) { - // return Column( - // mainAxisSize: MainAxisSize.min, - // children: [ - // const GeofenceStatusBanner(), - // const SizedBox(height: UiConstants.space3), - // EarlyCheckInBanner( - // availabilityTime: ClockInHelpers.getCheckInAvailabilityTime( - // selectedShift!, - // context, - // ), - // ), - // ], - // ); - // } + if (!isCheckedIn && !ClockInHelpers.isCheckInAllowed(selectedShift!)) { + return Column( + mainAxisSize: MainAxisSize.min, + children: [ + const GeofenceStatusBanner(), + const SizedBox(height: UiConstants.space3), + EarlyCheckInBanner( + availabilityTime: ClockInHelpers.getCheckInAvailabilityTime( + selectedShift!, + context, + ), + ), + ], + ); + } return BlocBuilder( builder: (BuildContext context, GeofenceState geofenceState) {