diff --git a/components/toolbar/Makefile b/components/toolbar/Makefile index ca82f96571..b5d38ccba4 100644 --- a/components/toolbar/Makefile +++ b/components/toolbar/Makefile @@ -2,8 +2,7 @@ deps: pnpm install --frozen-lockfile make -C ../../clients/typescript build -build: - deps +build: deps pnpm run build tests: CI=true pnpm run test diff --git a/components/toolbar/src/tabs.tsx b/components/toolbar/src/tabs.tsx index 46f6cd6561..68b56ca515 100644 --- a/components/toolbar/src/tabs.tsx +++ b/components/toolbar/src/tabs.tsx @@ -10,9 +10,7 @@ type TabName = 'status' | 'db' | 'sql' function TabItem( label: string, name: TabName, - handleClick: ( - name: 'status' | 'db' | 'sql' - ) => void, + handleClick: (name: 'status' | 'db' | 'sql') => void, active: string, ): JSX.Element { const className =