Skip to content

Commit

Permalink
schedules: fix showing continue notice on imported plans
Browse files Browse the repository at this point in the history
  • Loading branch information
wfleischer committed Dec 7, 2024
1 parent 54b7948 commit dc62331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/schedules/presentations/schedule_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class _SchedulePageState extends ConsumerState<SchedulePage> {
AsyncValue(:final valueOrNull?) => Column(
children: [
LinearProgressIndicator(value: progress),
if (plan.lastDate == null)
if (plan.lastDate == null && plan.bookmark.dayIndex == 0)
Padding(
padding: const EdgeInsets.all(20.0),
child: Text(
Expand Down

0 comments on commit dc62331

Please sign in to comment.