Skip to content

Commit

Permalink
Update UserProfile image src
Browse files Browse the repository at this point in the history
  • Loading branch information
bombies committed Oct 31, 2023
1 parent e453727 commit 7ba1207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/(site)/components/UserProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type Props = {

const UserProfile: FC<Props> = ({placement}) => {
const {memberData: {data: member}} = useMemberData()
const {data: memberImage, isLoading: memberImageLoading} = useCloudFrontUrl(member && `avatars/${member?.id}`)
const {data: memberImage, isLoading: memberImageLoading} = useCloudFrontUrl(member && `avatars/${member?.image}`)

return (
<Dropdown
Expand Down

0 comments on commit 7ba1207

Please sign in to comment.