Skip to content

Commit

Permalink
Remove unnecessary props
Browse files Browse the repository at this point in the history
  • Loading branch information
brianschwabauer committed Dec 30, 2024
1 parent dd7f3bb commit f72c31c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/components/Page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
display.startsWith('lined') ||
display.startsWith('numbered') ||
display.startsWith('todo')
? columns ?? 1
? (columns ?? 1)
: size === 'small'
? 30
: size === 'medium'
Expand All @@ -48,7 +48,7 @@
months={settings.months.filter((m) => m.year === timeframe.year)}
{settings} />
{:else if display === 'tasklist-progress'}
<TaskProgress {timeframe} {settings} />
<TaskProgress />
{:else if display === 'calendar-year'}
<CalendarYear
months={settings.months.filter((m) => m.year === timeframe.year)}
Expand Down

0 comments on commit f72c31c

Please sign in to comment.