fix: textarea resize vertical only, deploy script npm install

This commit is contained in:
Alexej Wolff
2026-05-07 00:37:54 +02:00
parent 4346bcce40
commit 2423f5756a
2 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -453,13 +453,13 @@ export default function CreateStoryPage() {
// Helper function to save characters as global NPCs
const saveCharactersAsGlobalNPCs = async () => {
const existingNames = savedNPCs.map((npc) => npc.name.toLowerCase());
for (const char of storyCharacters) {
// Skip if NPC with this name already exists
if (existingNames.includes(char.name.toLowerCase())) {
continue;
}
// Create global NPC from story character
await createNPCCharacter({
name: char.name,