diff --git a/src/components/Login/AccountDropdown.astro b/src/components/Login/AccountDropdown.astro
index 8643c523a..6b37bbc3a 100644
--- a/src/components/Login/AccountDropdown.astro
+++ b/src/components/Login/AccountDropdown.astro
@@ -19,6 +19,14 @@
Your Profile
+
+
+ Settings
+
+
+
+ Settings
+
Password
diff --git a/src/components/Setting/UpdateProfileForm.tsx b/src/components/Setting/UpdateProfileForm.tsx
index 7d6fcbb4c..3ee1132ad 100644
--- a/src/components/Setting/UpdateProfileForm.tsx
+++ b/src/components/Setting/UpdateProfileForm.tsx
@@ -28,9 +28,9 @@ export default function UpdateProfileForm() {
headers,
body: JSON.stringify({
name,
- github,
- linkedin,
- website,
+ github: github === '' ? undefined : github,
+ linkedin: linkedin === '' ? undefined : linkedin,
+ website: website === '' ? undefined : website,
}),
})
.then(async (res) => {