Skip to content

Commit

Permalink
remove unnessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
vantage-ola committed Aug 22, 2024
1 parent ce16ee7 commit 3e7f90d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tracknow/web/src/components/User/UserAddLaptimes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { useLaptimes } from "../../hooks/useLaptimes";
import { Laptime } from "../../Types";
import { BeatLoader } from "react-spinners";
//import { LoadingSpinner } from "../Loading/LoadingSpinner";
import { useUsers } from "../../hooks/useUsers";
//import { useUsers } from "../../hooks/useUsers";

const UserAddLaptimes = () => {

Expand Down
2 changes: 1 addition & 1 deletion tracknow/web/src/components/User/UserLaptimes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { UserProfile } from "./UserProfile";

const UserLaptimes = () => {

const { loading, userId } = useUsers();
const { userId } = useUsers();

//const [loading, setLoading] = React.useState(false)

Expand Down
4 changes: 2 additions & 2 deletions tracknow/web/src/components/User/UserProfile.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from "react";
import { useUsers, getProfile } from "../../hooks/useUsers";
import { getProfile } from "../../hooks/useUsers";
import {
Card, CardBody,
Center, Avatar, Stack, Text,
Expand All @@ -9,7 +9,7 @@ import {
import { GetUserLaptimesResponse, OneUser } from "../../Types";
import { useLaptimes } from "../../hooks/useLaptimes";
import { HomePost } from "../Post/Post";
import { BeatLoader } from "react-spinners";
//import { BeatLoader } from "react-spinners";

export const UserProfile = ({ id }: { id: number }) => {

Expand Down

0 comments on commit 3e7f90d

Please sign in to comment.