Skip to content

Commit

Permalink
OCI should use hasPreviousMonthData Vs isPreviousMonthData
Browse files Browse the repository at this point in the history
  • Loading branch information
dlabrecq committed Oct 7, 2024
1 parent cebe0dd commit a22edad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/explorer/explorerUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ export const getIsDataAvailable = ({
case PerspectiveType.oci:
isDataAvailable = hasData(ociProviders);
isCurrentMonthData = hasCurrentMonthData(ociProviders);
isPreviousMonthData = isPreviousMonthData(ociProviders);
isPreviousMonthData = hasPreviousMonthData(ociProviders);
break;
case PerspectiveType.ocp:
case PerspectiveType.ocpCloud:
Expand Down

0 comments on commit a22edad

Please sign in to comment.