Skip to content

Commit

Permalink
Fix negative votes
Browse files Browse the repository at this point in the history
  • Loading branch information
polytroper committed Nov 16, 2024
1 parent 6112bf4 commit 1d7f58d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ui/ship-pill-cluster.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function ShipPillCluster({

{ship.shipStatus === 'shipped' &&
(ship.voteRequirementMet ? (
ship.doubloonPayout ? (
ship.doubloonPayout != null ? (
<Pill
msg={`${Math.floor(ship.doubloonPayout)} Doubloons`}
color="green"
Expand Down

0 comments on commit 1d7f58d

Please sign in to comment.