Skip to content

Commit

Permalink
Update status indicator in footer (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
aayushmahapatra authored Feb 5, 2024
1 parent 146038c commit 3cb6777
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Footer = () => {
indicator: "none",
description: "All Systems Operational",
});
const [colorCode, setColorCode] = useState("#00FF00");
const [colorCode, setColorCode] = useState("#0057FF");

useEffect(() => {
(async () => {
Expand All @@ -24,7 +24,7 @@ const Footer = () => {
if (!response.ok) throw new Error("Network response was not ok");

const colorMapping = {
none: "#36B37E",
none: "#0057FF",
minor: "#EFBF14",
major: "#DE0B0B",
critical: "#DE0B0B",
Expand Down

0 comments on commit 3cb6777

Please sign in to comment.