Skip to content

Commit

Permalink
refactor(DashboardTableSummaryDetails): remove missed rewards
Browse files Browse the repository at this point in the history
This is a quickfix, temporarily remove `missed rewards` per request.

See: BEDS-923
  • Loading branch information
benji-bitfly committed Nov 6, 2024
1 parent 9c6feab commit 8149813
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions frontend/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"BcToggle",
"DashboardChartSummaryChartFilter",
"DashboardGroupManagementModal",
"DashboardTableSummaryDetails",
"DashboardTableValidators",
"DashboardValidatorManagmentModal",
"NotificationMachinesTable",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,9 @@ const data = computed<SummaryRow[][]>(() => {
props.forEach(p => addToList(index, p))
}
const rewardCols: CombinedPropOrUndefined[] = [
(!props.tableVisibility.reward ? 'reward' : undefined),
'missed_rewards',
]
const rewardCols: CombinedPropOrUndefined[]
= [ (!props.tableVisibility.reward ? 'reward' : undefined) ]
let addCols: CombinedPropOrUndefined[] = props.tableVisibility
.attestations
? []
Expand Down

0 comments on commit 8149813

Please sign in to comment.