chore: fixed conflicts

This commit is contained in:
Jannat Patel
2025-11-27 16:15:58 +05:30
13 changed files with 62 additions and 52 deletions

View File

@@ -222,8 +222,8 @@ watch(
watch(
() => profile.language,
(newVal, oldVal) => {
if (newVal !== oldVal) {
() => {
if (profile.language !== props.profile.data.language) {
hasLanguageChanged.value = true
}
}

View File

@@ -12,6 +12,5 @@ export function initSocket() {
withCredentials: true,
reconnectionAttempts: 5,
})
return socket
}