fix(web): type-only import for CanaryTokenRow

verbatimModuleSyntax is enabled in tsconfig — types must use the
'import type' form. Caught by 'npm run build' (tsc -b).
This commit is contained in:
2026-04-27 13:28:03 -04:00
parent e2c8b77546
commit 11b0a99914

View File

@@ -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;