Move show scrollbar option to chat settings (#4078)

move show scrollbar option to chat settings
This commit is contained in:
Sean Hatfield 2025-07-01 10:30:12 -07:00 committed by GitHub
parent 89320588f3
commit 6a32e688b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -4,6 +4,7 @@ import { useTranslation } from "react-i18next";
import AutoSubmit from "../components/AutoSubmit";
import AutoSpeak from "../components/AutoSpeak";
import SpellCheck from "../components/SpellCheck";
import ShowScrollbar from "../components/ShowScrollbar";
export default function ChatSettings() {
const { t } = useTranslation();
@ -29,6 +30,7 @@ export default function ChatSettings() {
<AutoSubmit />
<AutoSpeak />
<SpellCheck />
<ShowScrollbar />
</div>
</div>
</div>

View File

@ -2,7 +2,6 @@ import Sidebar from "@/components/SettingsSidebar";
import { isMobile } from "react-device-detect";
import { useTranslation } from "react-i18next";
import LanguagePreference from "../components/LanguagePreference";
import ShowScrollbar from "../components/ShowScrollbar";
import ThemePreference from "../components/ThemePreference";
import { MessageDirection } from "../components/MessageDirection";
@ -30,7 +29,6 @@ export default function InterfaceSettings() {
<ThemePreference />
<LanguagePreference />
<MessageDirection />
<ShowScrollbar />
</div>
</div>
</div>