Skip to content

Commit

Permalink
fix import type issue (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
aidansunbury authored Dec 28, 2024
1 parent 3a0c547 commit bda1237
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"noDuplicateFontNames": "off"
},
"style": {
"noNonNullAssertion": "warn"
"noNonNullAssertion": "warn",
"useImportType": "off"
},
"recommended": true
}
Expand Down
2 changes: 1 addition & 1 deletion packages/trpc-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "trpc-ui",
"version": "1.0.8",
"version": "1.0.9",
"description": "UI for testing tRPC backends",
"main": "lib/index.js",
"module": "lib/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/trpc-ui/src/react-app/components/TopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { LogoSvg } from "@src/react-app/components/LogoSvg";
import { useHeadersContext } from "@src/react-app/components/contexts/HeadersContext";
import { useSearch } from "@src/react-app/components/contexts/SearchStore";
import { useIsMac } from "@src/react-app/components/hooks/useIsMac";
import type React from "react";
import React from "react";

export function TopBar({
open,
Expand Down

0 comments on commit bda1237

Please sign in to comment.