diff --git a/frontend/src/pages/GeneralSettings/Appearance/CustomAppName/index.jsx b/frontend/src/pages/GeneralSettings/Appearance/CustomAppName/index.jsx index a4b928b8b8a..b94dbe505f0 100644 --- a/frontend/src/pages/GeneralSettings/Appearance/CustomAppName/index.jsx +++ b/frontend/src/pages/GeneralSettings/Appearance/CustomAppName/index.jsx @@ -57,20 +57,21 @@ export default function CustomAppName() { if (!canCustomize || loading) return null; return ( -
-
-

- Custom App Name -

-

- Set a custom app name that is displayed on the login page. -

-
+ +

+ Custom App Name +

+

+ Set a custom app name that is displayed on the login page. +

updateCustomAppName(e, "")} - className="mt-4 text-white text-base font-medium hover:text-opacity-60" + className="text-white text-base font-medium hover:text-opacity-60" > Clear @@ -90,7 +91,7 @@ export default function CustomAppName() { {hasChanges && ( diff --git a/frontend/src/pages/GeneralSettings/Appearance/CustomLogo/index.jsx b/frontend/src/pages/GeneralSettings/Appearance/CustomLogo/index.jsx index 7dc6e21cba6..0010506b1cb 100644 --- a/frontend/src/pages/GeneralSettings/Appearance/CustomLogo/index.jsx +++ b/frontend/src/pages/GeneralSettings/Appearance/CustomLogo/index.jsx @@ -69,15 +69,13 @@ export default function CustomLogo() { const { t } = useTranslation(); return ( -
-
-

- {t("appearance.logo.title")} -

-

- {t("appearance.logo.description")} -

-
+
+

+ {t("appearance.logo.title")} +

+

+ {t("appearance.logo.description")} +

{isDefaultLogo ? (
diff --git a/frontend/src/pages/GeneralSettings/Appearance/CustomMessages/index.jsx b/frontend/src/pages/GeneralSettings/Appearance/CustomMessages/index.jsx index b960ede9ae7..700bc28c523 100644 --- a/frontend/src/pages/GeneralSettings/Appearance/CustomMessages/index.jsx +++ b/frontend/src/pages/GeneralSettings/Appearance/CustomMessages/index.jsx @@ -55,16 +55,14 @@ export default function CustomMessages() { }; return ( -
-
-

- {t("appearance.message.title")} -

-

- {t("appearance.message.description")} -

-
-
+
+

+ {t("appearance.message.title")} +

+

+ {t("appearance.message.description")} +

+
{messages.map((message, index) => (
{message.user && ( @@ -121,7 +119,7 @@ export default function CustomMessages() {
{hasChanges && ( -
+
- )}
+ + {hasChanges && ( + + )} ); } diff --git a/frontend/src/pages/GeneralSettings/Appearance/FooterCustomization/index.jsx b/frontend/src/pages/GeneralSettings/Appearance/FooterCustomization/index.jsx index e7f6c75ec3d..08d38e370ec 100644 --- a/frontend/src/pages/GeneralSettings/Appearance/FooterCustomization/index.jsx +++ b/frontend/src/pages/GeneralSettings/Appearance/FooterCustomization/index.jsx @@ -50,16 +50,14 @@ export default function FooterCustomization() { }; return ( -
-
-

- {t("appearance.icons.title")} -

-

- {t("appearance.icons.description")} -

-
-
+
+

+ {t("appearance.icons.title")} +

+

+ {t("appearance.icons.description")} +

+
{t("appearance.icons.icon")}
{t("appearance.icons.link")}
diff --git a/frontend/src/pages/GeneralSettings/Appearance/LanguagePreference/index.jsx b/frontend/src/pages/GeneralSettings/Appearance/LanguagePreference/index.jsx index 46c38e656b0..3e198fda199 100644 --- a/frontend/src/pages/GeneralSettings/Appearance/LanguagePreference/index.jsx +++ b/frontend/src/pages/GeneralSettings/Appearance/LanguagePreference/index.jsx @@ -9,20 +9,18 @@ export default function LanguagePreference() { } = useLanguageOptions(); return ( - <> -
-

- Display Language -

-

- Select the preferred language to render AnythingLLM's UI in, when - applicable. -

-
+
+

+ Display Language +

+

+ Select the preferred language to render AnythingLLM's UI in, when + applicable. +

- +
); } diff --git a/frontend/src/pages/GeneralSettings/Appearance/MessageDirection/index.jsx b/frontend/src/pages/GeneralSettings/Appearance/MessageDirection/index.jsx index 79998fb1388..0dd6c70367a 100644 --- a/frontend/src/pages/GeneralSettings/Appearance/MessageDirection/index.jsx +++ b/frontend/src/pages/GeneralSettings/Appearance/MessageDirection/index.jsx @@ -5,11 +5,11 @@ export function MessageDirection() { const { msgDirection, setMsgDirection } = useChatMessageAlignment(); return ( -
-

+
+

Message Chat Alignment

-

+

Select the message alignment mode when using the chat interface.

diff --git a/frontend/src/pages/GeneralSettings/Appearance/ShowScrollbar/index.jsx b/frontend/src/pages/GeneralSettings/Appearance/ShowScrollbar/index.jsx index 361c7afa524..6c427ec241c 100644 --- a/frontend/src/pages/GeneralSettings/Appearance/ShowScrollbar/index.jsx +++ b/frontend/src/pages/GeneralSettings/Appearance/ShowScrollbar/index.jsx @@ -27,29 +27,27 @@ export default function ShowScrollbar() { }, []); return ( -
-
-

- Show chat window scrollbar -

-

- Enable or disable the scrollbar in the chat window -

-
- -
+
+

+ Show chat window scrollbar +

+

+ Enable or disable the scrollbar in the chat window +

+
+
); diff --git a/frontend/src/pages/GeneralSettings/Appearance/SupportEmail/index.jsx b/frontend/src/pages/GeneralSettings/Appearance/SupportEmail/index.jsx index 1cf9c2aeb0c..19c8b247168 100644 --- a/frontend/src/pages/GeneralSettings/Appearance/SupportEmail/index.jsx +++ b/frontend/src/pages/GeneralSettings/Appearance/SupportEmail/index.jsx @@ -52,21 +52,22 @@ export default function SupportEmail() { if (loading || !user?.role) return null; return ( -
-
-

- Support Email -

-

- Set the support email address that shows up in the user menu while - logged into this instance. -

-
+ +

+ Support Email +

+

+ Set the support email address that shows up in the user menu while + logged into this instance. +

updateSupportEmail(e, "")} - className="mt-4 text-white text-base font-medium hover:text-opacity-60" + className="text-white text-base font-medium hover:text-opacity-60" > Clear @@ -86,7 +87,7 @@ export default function SupportEmail() { {hasChanges && ( diff --git a/frontend/src/pages/GeneralSettings/Appearance/ThemePreference/index.jsx b/frontend/src/pages/GeneralSettings/Appearance/ThemePreference/index.jsx index 44d79e542e1..f9f4a43009e 100644 --- a/frontend/src/pages/GeneralSettings/Appearance/ThemePreference/index.jsx +++ b/frontend/src/pages/GeneralSettings/Appearance/ThemePreference/index.jsx @@ -4,9 +4,9 @@ export default function ThemePreference() { const { theme, setTheme, availableThemes } = useTheme(); return ( -
-

Theme

-

+

+

Theme

+

Select your preferred theme for the application.