Skip to content

Commit

Permalink
453: Fix highlighting tags on social
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-scales committed Apr 6, 2024
1 parent 09b13db commit d738fa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FU.SPA/src/components/PostCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const PostCard = ({ post, showActions, onTagClick, showJoinedStatus }) => {
<Chip
key={t}
label={'# ' + t}
onClick={showActions ? () => handleTagClick(t) : null}
onClick={onTagClick ? () => handleTagClick(t) : null}
/>
))}
</div>
Expand Down

0 comments on commit d738fa0

Please sign in to comment.