Compare commits

...

2 Commits

Author SHA1 Message Date
Alexander Brown
8d9b087e80 Merge branch 'main' into fix/knip-unused-accountprecondition-export 2026-06-26 13:53:57 -07:00
bymyself
281a77c5a3 fix: make AccountPreconditionContext file-local to satisfy knip
The interface is only referenced inside useAccountPreconditionDialog.ts, so the
export is unused. knip's --cache masked it on main; it surfaces on fresh runs.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-26 11:27:21 -07:00

View File

@@ -1,7 +1,7 @@
import type { AccountPrecondition } from '@/platform/errorCatalog/accountPreconditionRouting'
import { useDialogService } from '@/services/dialogService'
export interface AccountPreconditionContext {
interface AccountPreconditionContext {
/** Node type that triggered the precondition, used as modal context. */
nodeType?: string
}