From 11b0a999140fee5c5f8fcaa3494aea0cd6504326 Mon Sep 17 00:00:00 2001 From: anti Date: Mon, 27 Apr 2026 13:28:03 -0400 Subject: [PATCH] fix(web): type-only import for CanaryTokenRow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit verbatimModuleSyntax is enabled in tsconfig — types must use the 'import type' form. Caught by 'npm run build' (tsc -b). --- decnet_web/src/components/CanaryTokens.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/decnet_web/src/components/CanaryTokens.tsx b/decnet_web/src/components/CanaryTokens.tsx index d2fd8412..33492023 100644 --- a/decnet_web/src/components/CanaryTokens.tsx +++ b/decnet_web/src/components/CanaryTokens.tsx @@ -5,7 +5,8 @@ import { import api from '../utils/api'; import { useEscapeKey } from '../hooks/useEscapeKey'; import { useFocusTrap } from '../hooks/useFocusTrap'; -import CanaryTokenDrawer, { CanaryTokenRow } from './CanaryTokenDrawer'; +import CanaryTokenDrawer from './CanaryTokenDrawer'; +import type { CanaryTokenRow } from './CanaryTokenDrawer'; interface BlobRow { uuid: string;