diff --git a/src/renderer/features/sidebar/components/action-bar.tsx b/src/renderer/features/sidebar/components/action-bar.tsx index f1ced9f9c..7c209f59f 100644 --- a/src/renderer/features/sidebar/components/action-bar.tsx +++ b/src/renderer/features/sidebar/components/action-bar.tsx @@ -5,7 +5,6 @@ import styles from './action-bar.module.css'; import { AppMenu } from '/@/renderer/features/titlebar/components/app-menu'; import { useCommandPalette } from '/@/renderer/store'; -import { ActionIcon } from '/@/shared/components/action-icon/action-icon'; import { Button } from '/@/shared/components/button/button'; import { DropdownMenu } from '/@/shared/components/dropdown-menu/dropdown-menu'; import { Grid } from '/@/shared/components/grid/grid'; @@ -42,7 +41,9 @@ export const ActionBar = () => { - + @@ -61,8 +62,12 @@ const NavigateButtons = () => { return ( <> - navigate(-1)} /> - navigate(1)} /> + + ); };