Skip to content

Commit

Permalink
feat(mellow-vue): remove accessing user details with .value
Browse files Browse the repository at this point in the history
  • Loading branch information
DominusKelvin committed Sep 20, 2024
1 parent b3fb75c commit 9737754
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/mellow-vue/assets/js/pages/dashboard/profile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ defineOptions({
const loggedInUser = usePage().props.loggedInUser
const form = useForm({
email: loggedInUser.value.email,
fullName: loggedInUser.value.fullName,
email: loggedInUser.email,
fullName: loggedInUser.fullName,
currentPassword: null,
password: null,
confirmPassword: null
Expand Down

0 comments on commit 9737754

Please sign in to comment.