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

fix: Correctly determine the Landing Page Mode
This commit is contained in:
Tim Jaeryang Baek 2025-08-11 16:18:55 +04:00 committed by GitHub
commit 9aea18f90c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -489,7 +489,7 @@
type="button" type="button"
> >
<span class="ml-2 self-center" id="notification-sound-state" <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> </button>
</div> </div>