Skip to content

Commit

Permalink
fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
paulharter committed Jan 31, 2024
1 parent 7f0e2f4 commit 0385b0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 1 addition & 2 deletions components/toolbar/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 1 addition & 3 deletions components/toolbar/src/tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 0385b0a

Please sign in to comment.