From ec3865e1796993321143d531b684ff260338a7b6 Mon Sep 17 00:00:00 2001 From: Isaac Light Date: Tue, 11 Jun 2024 19:48:52 -0400 Subject: [PATCH] formatting --- frontend/src/pages/Home.tsx | 2 -- frontend/src/pages/RobotDetails.tsx | 1 - 2 files changed, 3 deletions(-) diff --git a/frontend/src/pages/Home.tsx b/frontend/src/pages/Home.tsx index 9e22be37..b7280a8b 100644 --- a/frontend/src/pages/Home.tsx +++ b/frontend/src/pages/Home.tsx @@ -4,7 +4,6 @@ import React, { useState } from "react"; import { Button, Card, Col, Row } from "react-bootstrap"; import { useNavigate } from "react-router-dom"; - const Home: React.FC = () => { const { theme, colors } = useTheme(); const navigate = useNavigate(); @@ -101,7 +100,6 @@ const Home: React.FC = () => { navigate("/robots/add"); }} > - Make a Robot diff --git a/frontend/src/pages/RobotDetails.tsx b/frontend/src/pages/RobotDetails.tsx index 89f4ad8d..81c4357f 100644 --- a/frontend/src/pages/RobotDetails.tsx +++ b/frontend/src/pages/RobotDetails.tsx @@ -1,4 +1,3 @@ -import { faAlignRight } from "@fortawesome/free-solid-svg-icons"; import { useAlertQueue } from "hooks/alerts"; import { api, Bom } from "hooks/api"; import { useAuthentication } from "hooks/auth";