We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aab7c04 commit c0a16f4Copy full SHA for c0a16f4
1 file changed
src/Pages/Home.tsx
@@ -72,7 +72,9 @@ export function Home() {
72
}, [DB]);
73
74
const heading = abnormalCount > 0
75
- ? `${abnormalCount} components have issue, but don't worry, we are working on it.`
+ ? abnormalCount === 1
76
+ ? `${abnormalCount} component has an issue, but don't worry, we are working on it.`
77
+ : `${abnormalCount} components have issues, but don't worry, we are working on it.`
78
: "All Systems Operational";
79
80
return (
0 commit comments