Skip to content

Commit d62447a

Browse files
committed
Unstick like
1 parent 802367c commit d62447a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

web/components/profile/lover-profile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export function LoverProfile(props: {
110110
{areCompatible &&
111111
((!fromLoverPage && !isCurrentUser) ||
112112
(fromLoverPage && fromLoverPage.user_id === currentUser?.id)) && (
113-
<Row className="sticky bottom-[70px] right-0 mr-1 self-end lg:bottom-6">
113+
<Row className="right-0 mr-1 self-end lg:bottom-6">
114114
<LikeButton targetLover={lover} liked={liked} refresh={refresh} />
115115
</Row>
116116
)}

web/components/widgets/like-button.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export const LikeButton = (props: {
6969
<div className="p-2 pb-0 pt-0">{liked ? <>Liked!</> : <>Like</>}</div>
7070
</Col>
7171
</button>
72-
<LikeConfimationDialog
72+
<LikeConfirmationDialog
7373
targetLover={targetLover}
7474
hasFreeLike={hasFreeLike}
7575
submit={like}
@@ -86,7 +86,7 @@ export const LikeButton = (props: {
8686
)
8787
}
8888

89-
const LikeConfimationDialog = (props: {
89+
const LikeConfirmationDialog = (props: {
9090
targetLover: Lover
9191
hasFreeLike: boolean
9292
open: boolean

0 commit comments

Comments
 (0)