From 39014fce04f43be72f47a680fa93a132474feb60 Mon Sep 17 00:00:00 2001 From: n4ze3m Date: Sun, 27 Oct 2024 00:42:37 +0530 Subject: [PATCH] Fix: Capitalize "last7Days" label Consistent capitalization for sidebar labels. --- src/components/Option/Sidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Option/Sidebar.tsx b/src/components/Option/Sidebar.tsx index 24c35f9..1c9fd54 100644 --- a/src/components/Option/Sidebar.tsx +++ b/src/components/Option/Sidebar.tsx @@ -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