From 7bb34bd66f8b4c21e2332d883e9ad4bee904f869 Mon Sep 17 00:00:00 2001 From: nastyaeremina Date: Fri, 3 Apr 2026 17:14:01 -0400 Subject: [PATCH] fix: remove unintended left and right borders from FilterBar The FilterBar was using `border` (all sides) with `borderTop: 'none'`, leaving visible left, right, and bottom borders. Changed to `borderBottom` only, matching the previewMode style and removing the unintended left border visible on the tasks page. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/layouts/FilterBar.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/layouts/FilterBar.tsx b/src/components/layouts/FilterBar.tsx index 687542270..371baf35f 100644 --- a/src/components/layouts/FilterBar.tsx +++ b/src/components/layouts/FilterBar.tsx @@ -81,8 +81,7 @@ export const FilterBar = ({ mode }: FilterBarProps) => { previewMode ? { borderBottom: (theme) => `1px solid ${theme.color.borders.borderDisabled}` } : { - border: (theme) => `1px solid ${theme.color.borders.borderDisabled}`, - borderTop: 'none', + borderBottom: (theme) => `1px solid ${theme.color.borders.borderDisabled}`, } } >