Skip to content

Commit

Permalink
Merge pull request #603 from vitessio/fix-status-hero-error
Browse files Browse the repository at this point in the history
fix: status hero error
  • Loading branch information
frouioui authored Aug 27, 2024
2 parents 651819d + d512e5b commit 83e895d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/pages/StatusPage/components/StatusHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default function StatusHero() {
)}

{!isDataStatusLoading &&
(dataStatusError || !dataStatusMetrics || dataStatusMetrics) && (
(dataStatusError || !dataStatusMetrics) && (
<div className="text-destructive text-center my-10">{errorApi}</div>
)}
{!isDataStatusLoading && dataStatusMetrics && (
Expand Down

0 comments on commit 83e895d

Please sign in to comment.