Put profile pic down

This commit is contained in:
MartinBraquet
2025-09-06 20:13:17 +02:00
parent 4810904aa8
commit 445f62ca53

View File

@@ -28,6 +28,7 @@ export function LoverProfile(props: {
fromLoverPage?: Lover
fromSignup?: boolean
}) {
console.log('Rendering LoverProfile for ', props)
const { lover, user, refreshLover, fromLoverPage, fromSignup } = props
const currentUser = useUser()
@@ -64,7 +65,6 @@ export function LoverProfile(props: {
return (
<>
{lover.photo_urls && <ProfileCarousel lover={lover} />}
<LoverProfileHeader
user={user}
lover={lover}
@@ -118,6 +118,7 @@ export function LoverProfile(props: {
/>
</Row>
)}
{lover.photo_urls && <ProfileCarousel lover={lover} />}
</>
)
}