Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Actually fix revoke button hiding
  • Loading branch information
regalijan committed Nov 5, 2023
1 parent 5b9a31a commit caabf96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes/hammer.tsx
Expand Up @@ -323,7 +323,7 @@ export default function () {
colorScheme="red"
onClick={onOpen}
visibility={
status !== "Not Moderated" && !status ? "visible" : "hidden"
status === "Not Moderated" || !status ? "hidden" : "visible"
}
>
Revoke Punishment
Expand Down

0 comments on commit caabf96

Please sign in to comment.