소스 검색

Merge pull request #1839 from cheahjs/fix/fluid-setting-not-reflecting-current-setting

fix: fluid stream setting not reflecting current state on load
Timothy Jaeryang Baek 1 년 전
부모
커밋
e360d57203
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/lib/components/chat/Settings/Interface.svelte

+ 1 - 0
src/lib/components/chat/Settings/Interface.svelte

@@ -106,6 +106,7 @@
 		responseAutoCopy = settings.responseAutoCopy ?? false;
 		showUsername = settings.showUsername ?? false;
 		fullScreenMode = settings.fullScreenMode ?? false;
+		splitLargeChunks = settings.splitLargeChunks ?? false;
 	});
 </script>