Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gtanczyk committed Aug 23, 2024
1 parent 6881dce commit b7b7ceb
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ const getBonusColor = (bonusType: BonusType): string => {
return '#FF69B4'; // Hot Pink
case BonusType.Builder:
return '#00FFFF'; // Cyan
// @CODEGEN: Add color for other bonus types
default:
return '#FFFF00'; // Yellow
}
Expand All @@ -143,7 +142,6 @@ const getBonusSymbol = (bonusType: BonusType): string => {
return 'X';
case BonusType.Builder:
return 'B';
// @CODEGEN: Add letters for other bonus types
default:
return '?';
}
Expand Down

0 comments on commit b7b7ceb

Please sign in to comment.