diff --git a/src/systems/integration/sillytavern.js b/src/systems/integration/sillytavern.js index 2cf96a1..505c1d9 100644 --- a/src/systems/integration/sillytavern.js +++ b/src/systems/integration/sillytavern.js @@ -74,7 +74,7 @@ function syncLastGeneratedDataFromSwipeStore(currentChat) { if (swipeData) { lastGeneratedData.userStats = swipeData.userStats || null; lastGeneratedData.infoBox = swipeData.infoBox || null; - // Normalise characterThoughts to string (backward compat with old object format). + // Normalize characterThoughts to string (backward compat with old object format). if (swipeData.characterThoughts && typeof swipeData.characterThoughts === 'object') { lastGeneratedData.characterThoughts = JSON.stringify(swipeData.characterThoughts, null, 2); } else {