Skip to content

Commit

Permalink
fix: #1392 endless loading spinner on cost explorer page (#1404)
Browse files Browse the repository at this point in the history
* fix: #1392 Fix service chart loading issues
  • Loading branch information
nphivu414 authored May 28, 2020
1 parent 1109cc4 commit 469908c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const CostExplorerTable: React.FC<CostExplorerTableProps> = () => {
if (isLoading) return <Loader />

const columns = prepareTableColumns(monthlyBilling)
const tableData = prepareTableData(monthlyBilling)
const tableData = prepareTableData(monthlyBilling?.requestsByService)

return (
<>
Expand Down

0 comments on commit 469908c

Please sign in to comment.