happy linter - happy life

pull/595/head
Tim Pechersky 2022-04-28 19:05:39 +01:00
rodzic fe57b4f336
commit b8bff8d5af
2 zmienionych plików z 0 dodań i 5 usunięć

Wyświetl plik

@ -9,10 +9,6 @@ const Status = () => {
const healthyStatusColor = "green.900";
const downStatusColor = "red.600";
const shortTimestamp = (rawTimestamp) => {
return rawTimestamp.replace(/^.+T/, "").replace(/\..+/, "");
};
const { serverListStatusCache } = useStatus();
console.log(serverListStatusCache?.data);

Wyświetl plik

@ -3,7 +3,6 @@ import { Flex, Center, Text, Link, IconButton } from "@chakra-ui/react";
import React, { Suspense, useContext, useState } from "react";
import UIContext from "../core/providers/UIProvider/context";
const Sidebar = React.lazy(() => import("../components/Sidebar"));
const Navbar = React.lazy(() => import("../components/Navbar"));
const RootLayout = (props) => {
const ui = useContext(UIContext);