Skip to content

Commit

Permalink
Merge pull request #1117 from hackclub/fix_pending_ships
Browse files Browse the repository at this point in the history
Fixed ships awaiting payout
  • Loading branch information
malted authored Jan 28, 2025
2 parents 7b2eceb + a0541a1 commit c9445a1
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 @@ -56,7 +56,7 @@ export default function ShipPillCluster({
{chain[0].shipStatus === 'shipped' ? (
<>
{allShipsHaveVoteRequirementMet ? (
chain.at(-1)?.doubloonPayout != null ? (
chain.at(-1).paidOut == true ? (
<Pill
classes={`${transparent && 'bg-white/15 text-white'} ${size === 'small' ? 'text-xs' : ''}`}
msg={pluralize(roundedPayout, 'doubloon', true)}
Expand Down

0 comments on commit c9445a1

Please sign in to comment.