Skip to content

Commit c9445a1

Browse files
authored
Merge pull request #1117 from hackclub/fix_pending_ships
Fixed ships awaiting payout
2 parents 7b2eceb + a0541a1 commit c9445a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ui/ship-pill-cluster.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default function ShipPillCluster({
5656
{chain[0].shipStatus === 'shipped' ? (
5757
<>
5858
{allShipsHaveVoteRequirementMet ? (
59-
chain.at(-1)?.doubloonPayout != null ? (
59+
chain.at(-1).paidOut == true ? (
6060
<Pill
6161
classes={`${transparent && 'bg-white/15 text-white'} ${size === 'small' ? 'text-xs' : ''}`}
6262
msg={pluralize(roundedPayout, 'doubloon', true)}

0 commit comments

Comments
 (0)