Skip to content

Commit bda1237

Browse files
authored
fix import type issue (#50)
1 parent 3a0c547 commit bda1237

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

biome.jsonc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"noDuplicateFontNames": "off"
2929
},
3030
"style": {
31-
"noNonNullAssertion": "warn"
31+
"noNonNullAssertion": "warn",
32+
"useImportType": "off"
3233
},
3334
"recommended": true
3435
}

packages/trpc-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "trpc-ui",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"description": "UI for testing tRPC backends",
55
"main": "lib/index.js",
66
"module": "lib/index.mjs",

packages/trpc-ui/src/react-app/components/TopBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { LogoSvg } from "@src/react-app/components/LogoSvg";
55
import { useHeadersContext } from "@src/react-app/components/contexts/HeadersContext";
66
import { useSearch } from "@src/react-app/components/contexts/SearchStore";
77
import { useIsMac } from "@src/react-app/components/hooks/useIsMac";
8-
import type React from "react";
8+
import React from "react";
99

1010
export function TopBar({
1111
open,

0 commit comments

Comments
 (0)