Skip to content

Commit 6129f84

Browse files
committed
fix: hide estimated costs in project breakdown
Since the backend doesn't return the estimated cost, the Console shows 0 for every estimated cost. As an interim, this PR hides the column rather than showing incorrect data.
1 parent dfe8d3e commit 6129f84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/(console)/organization-[organization]/usage/[[invoice]]/ProjectBreakdown.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
{ id: 'reads', hide: !databaseOperationMetric },
116116
{ id: 'writes', hide: !databaseOperationMetric },
117117
{ id: 'metric', hide: !!databaseOperationMetric },
118-
{ id: 'costs' }
118+
{ id: 'costs', hide: true }
119119
]}
120120
let:root>
121121
<svelte:fragment slot="header" let:root>

0 commit comments

Comments
 (0)