diff --git a/src-web/components/Sidebar.tsx b/src-web/components/Sidebar.tsx index 92f9f52e..5c715047 100644 --- a/src-web/components/Sidebar.tsx +++ b/src-web/components/Sidebar.tsx @@ -153,8 +153,9 @@ export const Sidebar = memo(function Sidebar({ className }: Props) { ); return ( -
-
+ - - - -
+ +
); }); @@ -193,7 +188,13 @@ interface SidebarItemsProps { onClearSelected: () => void; } -function SidebarItems({ requests, focused, selectedIndex, onSelect, onClearSelected }: SidebarItemsProps) { +function SidebarItems({ + requests, + focused, + selectedIndex, + onSelect, + onClearSelected, +}: SidebarItemsProps) { const [hoveredIndex, setHoveredIndex] = useState(null); const updateRequest = useUpdateAnyRequest();