소스 검색

Merge pull request #16479 from EventHorizon-AI/fix/landing-page-mode

fix: Correctly determine the Landing Page Mode
Tim Jaeryang Baek 1 개월 전
부모
커밋
9aea18f90c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/lib/components/chat/Settings/Interface.svelte

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

@@ -489,7 +489,7 @@
 						type="button"
 					>
 						<span class="ml-2 self-center" id="notification-sound-state"
-							>{notificationSound === true ? $i18n.t('On') : $i18n.t('Off')}</span
+							>{landingPageMode === '' ? $i18n.t('Default') : $i18n.t('Chat')}</span
 						>
 					</button>
 				</div>