|
|
@@ -382,7 +382,10 @@ const formatBlindLevel = (blindLevels) => {
|
|
|
return '—';
|
|
|
}
|
|
|
const firstLevel = blindLevels[0];
|
|
|
- return `${firstLevel.smallBlind}/${firstLevel.bigBlind} ${firstLevel.ante}`;
|
|
|
+ const smallBlind = firstLevel.smallBlind ?? 0;
|
|
|
+ const bigBlind = firstLevel.bigBlind ?? 0;
|
|
|
+ const ante = firstLevel.ante ?? 0;
|
|
|
+ return `${smallBlind}/${bigBlind} ${ante}`;
|
|
|
};
|
|
|
|
|
|
const handleViewLevels = (row) => {
|