Skip to content

Commit

Permalink
Bun fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwofford committed Nov 18, 2024
1 parent 18f4a32 commit 55ae3af
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 @@ -15,7 +15,7 @@ export default function ShipPillCluster({
? shipChains.get(ship.wakatimeProjectNames.join(','))
: null
const shipUpdateCount = shipUpdates ? shipUpdates.length - 1 : null
const unit = ship.doubloonPayout == 1 || "1" ? "Doubloon" : "Doubloons";
const unit = ship.doubloonPayout == 1 || '1' ? 'Doubloon' : 'Doubloons'
return (
<>
<Pill msg={`${ship.total_hours?.toFixed(1) ?? 0} hr`} glyph="clock" />
Expand Down

0 comments on commit 55ae3af

Please sign in to comment.