Allow everyone to message everyone for now

This commit is contained in:
MartinBraquet
2025-09-12 12:00:41 +02:00
parent 77c682454e
commit 0d7c3fb4b2

View File

@@ -64,7 +64,8 @@ export function LoverProfile(props: {
const areCompatible =
!!currentLover && areGenderCompatible(currentLover, lover)
const showMessageButton = liked || likedBack || !areCompatible
// Allow everyone to message everyone for now
const showMessageButton = true // liked || likedBack || !areCompatible
const isProfileVisible = currentUser || lover.visibility === 'public'