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:
@@ -5,7 +5,8 @@ import {
|
|||||||
import api from '../utils/api';
|
import api from '../utils/api';
|
||||||
import { useEscapeKey } from '../hooks/useEscapeKey';
|
import { useEscapeKey } from '../hooks/useEscapeKey';
|
||||||
import { useFocusTrap } from '../hooks/useFocusTrap';
|
import { useFocusTrap } from '../hooks/useFocusTrap';
|
||||||
import CanaryTokenDrawer, { CanaryTokenRow } from './CanaryTokenDrawer';
|
import CanaryTokenDrawer from './CanaryTokenDrawer';
|
||||||
|
import type { CanaryTokenRow } from './CanaryTokenDrawer';
|
||||||
|
|
||||||
interface BlobRow {
|
interface BlobRow {
|
||||||
uuid: string;
|
uuid: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user