fix: remove debug id column

This commit is contained in:
asiaznik 2024-02-14 18:36:21 +01:00 committed by bwallacee
parent f50e813ed2
commit 725b5f1b23
No known key found for this signature in database
GPG Key ID: E1234921C80BFE6D

View File

@ -237,9 +237,6 @@ const Games = ({
return (
<Table
columns={[
{
name: 'id',
},
{
name: 'epoch',
displayName: t('Epoch'),
@ -319,7 +316,7 @@ const Games = ({
const assetSymbol = asset ? <RewardAssetCell asset={asset} /> : '-';
return {
id: `${game.id} ${transfer?.transfer.status}`,
id: game.id,
amount: dependable(earnedAmount),
asset: dependable(assetSymbol),
daily: dependable(dailyAmount),