Skip to content

Commit

Permalink
Fix calendar card link
Browse files Browse the repository at this point in the history
  • Loading branch information
Nexerate committed Oct 20, 2024
1 parent cfa78d1 commit e9f7a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pages/feed/calendar_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class CalendarCardState extends State<CalendarCard> {

if (eventsForSelectedDay.isNotEmpty) {
final event = eventsForSelectedDay.first;
context.go('/events/${event.id}');
context.go('/calendar/event/${event.id}');
}
},
eventLoader: (day) => getEventsForDay(day),
Expand Down

0 comments on commit e9f7a2b

Please sign in to comment.