'use client' export type ValidationIssue = { nodeId: string nodeType: 'dialogue' | 'choice' | 'variable' | 'edge' contentSnippet: string referenceType: 'character' | 'variable' referenceId: string } type ExportValidationModalProps = { issues: ValidationIssue[] onExportAnyway: () => void onCancel: () => void } export default function ExportValidationModal({ issues, onExportAnyway, onCancel, }: ExportValidationModalProps) { return (
The following nodes reference characters or variables that are no longer defined.
{issue.contentSnippet}