diff --git a/frontend/src/components/UserSettings/Appearance.tsx b/frontend/src/components/UserSettings/Appearance.tsx
index a2bb1c0..a2ab4b0 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 d7137c5..9619b4f 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 7fb3775..3d504b3 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
}