diff --git a/src/app/CommandResponsesChart.tsx b/src/app/CommandResponsesChart.tsx index 69aa3da..9e630e0 100644 --- a/src/app/CommandResponsesChart.tsx +++ b/src/app/CommandResponsesChart.tsx @@ -11,11 +11,8 @@ const CommandResponsesChart = ({ lineChartData }: CommandResponsesChartProps): JSX.Element => { return ( - - {`Commands Responded To (Past 30 Days)`} + + {`Commands Responded To`} ); diff --git a/src/app/LinksDeletedChart.tsx b/src/app/LinksDeletedChart.tsx index 26da334..14d58ca 100644 --- a/src/app/LinksDeletedChart.tsx +++ b/src/app/LinksDeletedChart.tsx @@ -11,8 +11,8 @@ const LinksDeletedChart = ({ lineChartData }: LinksDeletedChartProps): JSX.Element => { return ( - - {`Links Deleted (Past 30 Days)`} + + {`Links Deleted`} ); diff --git a/src/app/StatsList.tsx b/src/app/StatsList.tsx index 8b0d5ae..39d78b7 100644 --- a/src/app/StatsList.tsx +++ b/src/app/StatsList.tsx @@ -1,5 +1,5 @@ import { JSX } from "react"; -import { Heading, Flex, VStack } from "@chakra-ui/react"; +import { Heading, Flex, Text, VStack } from "@chakra-ui/react"; import { CombinedError } from "urql"; import SingleStatComponent from "@/components/stats/SingleStat"; @@ -24,9 +24,14 @@ const StatsList = ({ }: StatsListProps): JSX.Element => { return ( - - {title} - + + + {title} + + + {groups ? "Updates every 24 hours" : "At time of page load"} + + {groups ? ( { return ( - - {`Times Bot Was Triggered (Past 30 Days)`} + + {`Times Bot Was Triggered`} ); diff --git a/src/app/page.tsx b/src/app/page.tsx index b0c0c72..75045f6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -104,7 +104,7 @@ export default function Home() { py="5vh" minW="fit-content" > - + - {`30 Day Stats`} + + {`30 Day Stats`} + + {"Updates every 24 hours"} + +