Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideIadeluca committed Oct 27, 2024
1 parent 3b80c36 commit bd56ab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/forum/components/Voters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default class Voters extends Component<VotersAttrs> {
}

view() {
if (!!this.attrs.post.votes() === false || !this.attrs.post.upvotes()) {
if (!this.attrs.post.votes() || !this.attrs.post.upvotes()) {
return (
<div className="VotingContainer">
<div className="FoFGamification-voters">
Expand Down

0 comments on commit bd56ab7

Please sign in to comment.