Remove unused function in App.tsx

This commit is contained in:
2026-04-15 10:10:33 +02:00
parent 36b1ab39f2
commit 927b7a4b53

View File

@@ -17244,17 +17244,6 @@ export function App({ store, initialStatusMessage }: AppProps) {
}
)
}
onSetDialogueLineSpeaker={(dialogueId, lineId, speakerName) =>
updateNpcDialogueLine(
dialogueId,
lineId,
"Set NPC dialogue speaker",
"Updated NPC dialogue speaker.",
(line) => {
line.speakerName = speakerName?.trim() || null;
}
)
}
onSetDialogueLineText={(dialogueId, lineId, text) =>
updateNpcDialogueLine(
dialogueId,