v3: added opengraph support to the app, wrote README instructions incl. a Docker image
This commit is contained in:
@@ -90,7 +90,7 @@ function FollowedSubFeed({
|
||||
dump={dump}
|
||||
voteCount={voteCounts[dump.id] ?? dump.voteCount}
|
||||
voted={myVotes.has(dump.id)}
|
||||
canVote={true}
|
||||
canVote
|
||||
castVote={castVote}
|
||||
removeVote={removeVote}
|
||||
isOwner={user.id === dump.userId}
|
||||
@@ -217,7 +217,7 @@ export function FollowedFeed({
|
||||
})
|
||||
);
|
||||
}
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, [token]);
|
||||
|
||||
// Scroll save
|
||||
@@ -324,9 +324,7 @@ export function FollowedFeed({
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
className={`feed-sort-btn${
|
||||
section === "playlists" ? " active" : ""
|
||||
}`}
|
||||
className={`feed-sort-btn${section === "playlists" ? " active" : ""}`}
|
||||
onClick={() => setSection("playlists")}
|
||||
>
|
||||
From playlists
|
||||
|
||||
Reference in New Issue
Block a user