fix: update planty types
Some checks failed
📊 Benchmark the Runtime / release (push) Successful in 1m8s
🚀 Lint & Test & Deploy / release (push) Failing after 4m18s

This commit is contained in:
2026-04-20 01:57:56 +02:00
parent 491e345c2f
commit 84f67e9c33

View File

@@ -36,7 +36,7 @@ export interface DialogNode {
export interface Choice {
label: string;
next: string | null;
next?: string | null;
onclick?: () => void;
}