Skip to content

Commit

Permalink
Merge pull request #224 from n4ze3m/next
Browse files Browse the repository at this point in the history
Fix: Capitalize "last7Days" label
  • Loading branch information
n4ze3m authored Oct 26, 2024
2 parents 0a15e83 + 39014fc commit 66909a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Option/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const Sidebar = ({ onClose }: Props) => {
if (yesterdayItems.length)
groups.push({ label: "yesterday", items: yesterdayItems })
if (lastWeekItems.length)
groups.push({ label: "last7days", items: lastWeekItems })
groups.push({ label: "last7Days", items: lastWeekItems })
if (olderItems.length) groups.push({ label: "older", items: olderItems })

return groups
Expand Down

0 comments on commit 66909a9

Please sign in to comment.