Skip to content

Commit

Permalink
fix: rename to Loader
Browse files Browse the repository at this point in the history
  • Loading branch information
tyleryy authored and alexanderl19 committed Nov 3, 2023
1 parent 8845198 commit 8e4242a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Container from "react-bootstrap/Container";
import Row from "react-bootstrap/Row";

import CountdownItem from "../CountdownItem/CountdownItem";
import BarLoader from "../Loader/Loader";
import Loader from "../Loader/Loader";

const SECOND = 1000;
const MINUTE = SECOND * 60;
Expand Down Expand Up @@ -78,7 +78,7 @@ export default function Countdown() {
</>
) : (
<Row className="justify-content-center">
<BarLoader />
<Loader />
</Row>
)}
</Container>
Expand Down
4 changes: 2 additions & 2 deletions apps/site/src/views/Schedule/components/Loader/Loader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const variants: Variants = {
},
};

const BarLoader = () => {
const Loader = () => {
return (
<motion.div
transition={{
Expand All @@ -37,4 +37,4 @@ const BarLoader = () => {
);
};

export default BarLoader;
export default Loader;

0 comments on commit 8e4242a

Please sign in to comment.