Skip to content

Commit

Permalink
update database config
Browse files Browse the repository at this point in the history
  • Loading branch information
sandygudie committed Dec 10, 2023
1 parent fa562b2 commit 47ad0f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/views/PublicView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ onMounted(async () => {
profileLinks.value.firstname = profileResponse.data[0].name.split(' ')[0]
profileLinks.value.lastname = profileResponse.data[0].name.split(' ')[1]
profileLinks.value.email = profileResponse.data[0].email
profileLinks.value.devlinks = profileResponse.data[0].links || []
profileLinks.value.devlinks = JSON.parse(profileResponse.data[0].links) || []
profileLinks.value.profilepic = profileResponse.data[0].profilepic
}
} catch (err: any) {
Expand Down

0 comments on commit 47ad0f4

Please sign in to comment.