Skip to content

Commit 78db755

Browse files
committed
fix(ui): check isEditing.value instead of ref object in watchEffect
1 parent 73ce1df commit 78db755

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/pages/profile/[handle]/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const websiteInput = ref()
3131
const isUpdateProfileActionPending = ref(false)
3232
3333
watchEffect(() => {
34-
if (isEditing) {
34+
if (isEditing.value) {
3535
if (profile) {
3636
displayNameInput.value = profile.value.displayName
3737
descriptionInput.value = profile.value.description

0 commit comments

Comments
 (0)