Skip to content

Commit

Permalink
added_loading_circles
Browse files Browse the repository at this point in the history
  • Loading branch information
is2ac2 committed Jun 10, 2024
1 parent 6714d79 commit 964994c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions frontend/src/pages/PartDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
Col,
Modal,
Row,
Spinner,
Spinner,
} from "react-bootstrap";
import Markdown from "react-markdown";
import { useNavigate, useParams } from "react-router-dom";
Expand Down Expand Up @@ -61,7 +61,7 @@ const PartDetails = () => {
}, [error, navigate]);

if (!part) {
return <Spinner animation="border" />;;
return <Spinner animation="border" />;
}

const response: PartDetailsResponse = {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/RobotDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
Col,
Modal,
Row,
Spinner,
Spinner,
} from "react-bootstrap";
import Markdown from "react-markdown";
import { Link, useNavigate, useParams } from "react-router-dom";
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Robots.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const Robots = () => {
}, [error, navigate]);

if (!robotsData) {
return <Spinner animation="border" />;;
return <Spinner animation="border" />;
}

return (
Expand Down

0 comments on commit 964994c

Please sign in to comment.