aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/shared/sidebar/Sidebar.tsx
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-03-30 02:20:08 +0000
committerMohamed Bassem <me@mbassem.com>2025-03-30 02:22:45 +0000
commite38be878c2ea2f8019ba1b7ba79c23fccdde5b81 (patch)
tree61454453d4e9d3619e95afed22f05084eab98a6b /apps/web/components/shared/sidebar/Sidebar.tsx
parentd86f601f554cc34a189643480619f103c47ad732 (diff)
downloadkarakeep-e38be878c2ea2f8019ba1b7ba79c23fccdde5b81.tar.zst
ui(web): Drop the font weight attribute from sidebar items
Diffstat (limited to 'apps/web/components/shared/sidebar/Sidebar.tsx')
-rw-r--r--apps/web/components/shared/sidebar/Sidebar.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/components/shared/sidebar/Sidebar.tsx b/apps/web/components/shared/sidebar/Sidebar.tsx
index bd5d23e6..2e3cd9e7 100644
--- a/apps/web/components/shared/sidebar/Sidebar.tsx
+++ b/apps/web/components/shared/sidebar/Sidebar.tsx
@@ -16,9 +16,9 @@ export default async function Sidebar({
const { t } = await useTranslation();
return (
- <aside className="flex h-[calc(100vh-64px)] w-60 flex-col gap-5 border-r p-4 ">
+ <aside className="flex h-[calc(100vh-64px)] w-60 flex-col gap-5 border-r p-4">
<div>
- <ul className="space-y-2 text-sm font-medium">
+ <ul className="space-y-2 text-sm">
{items(t).map((item) => (
<SidebarItem
key={item.name}