diff --git a/frontend/src/components/UserSettings/Appearance.tsx b/frontend/src/components/UserSettings/Appearance.tsx index a2bb1c086..a2ab4b0a6 100644 --- a/frontend/src/components/UserSettings/Appearance.tsx +++ b/frontend/src/components/UserSettings/Appearance.tsx @@ -21,13 +21,13 @@ const Appearance = () => { {/* TODO: Add system default option */} - Light mode + Light Mode Default - Dark mode + Dark Mode diff --git a/frontend/src/components/UserSettings/ChangePassword.tsx b/frontend/src/components/UserSettings/ChangePassword.tsx index d7137c54b..9619b4f09 100644 --- a/frontend/src/components/UserSettings/ChangePassword.tsx +++ b/frontend/src/components/UserSettings/ChangePassword.tsx @@ -53,14 +53,18 @@ const ChangePassword = () => { return ( <> - + Change Password - + - Current password + Current Password { return ( <> - + User Information - + Full name diff --git a/frontend/src/utils.ts b/frontend/src/utils.ts index 7fb37752e..3d504b3b9 100644 --- a/frontend/src/utils.ts +++ b/frontend/src/utils.ts @@ -35,8 +35,8 @@ export const confirmPasswordRules = ( } if (isRequired) { - rules.required = "Password confirmation is required"; + rules.required = "Password confirmation is required" } - return rules; + return rules }