Skip to content

Commit

Permalink
chore: Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamDormon committed Oct 16, 2021
1 parent 02f1135 commit 6385f79
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ui/src/components/App.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState, useMemo, createContext, useEffect} from 'react';
import React, {useState, useMemo, useEffect} from 'react';
import './App.css'
import {useNuiEvent} from "../hooks/useNuiEvent";
import {debugData} from "../utils/debugData";
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/Content.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState, useEffect, Dispatch, SetStateAction} from 'react'
import React, {useState, useEffect} from 'react'
import {Grid, Button} from '@mui/material'
import cardata from '../cars.json';
import VehCard from './VehCard'
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {Dispatch, SetStateAction, useContext} from 'react'
import React, {Dispatch, SetStateAction} from 'react'
import {useTheme} from '@mui/material/styles';
import {
AppBar,
Expand Down
3 changes: 1 addition & 2 deletions ui/src/components/ModalBody.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React, {Dispatch, useState, useEffect, SetStateAction} from 'react'
import React, {Dispatch, useState, SetStateAction} from 'react'
import {useTheme} from "@mui/material/styles";
import {Button, Stack, Typography, LinearProgress, Slide, Dialog} from '@mui/material'
import {fetchNui} from "../utils/fetchNui"
import { TransitionProps } from '@mui/material/transitions';
import DialogueBody from "./DialogueBody";
import GlobalState from '../state'
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/VehCard.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useEffect, useState} from 'react'
import React, {useState} from 'react'
import DirectionsCarIcon from '@mui/icons-material/DirectionsCar'
import AssignmentIcon from '@mui/icons-material/Assignment'
import {
Expand Down

0 comments on commit 6385f79

Please sign in to comment.