Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
fix(user): use the user being read
Browse files Browse the repository at this point in the history
  • Loading branch information
KennethTrecy committed Dec 11, 2022
1 parent c55cdb4 commit cb467af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/user/read.page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ const managementInfo = computed<UserManagementInfo>(
)
const isReachableEmployee = computed<boolean>(
() => userProfile.data.kind === "reachable_employee"
() => user.value.data.kind === "reachable_employee"
)
const isDeleted = computed<boolean>(() => managementInfo.value.isDeleted)
Expand Down

0 comments on commit cb467af

Please sign in to comment.