Skip to content

Commit

Permalink
chore(web): Fix eslint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeWasTakenn committed May 1, 2022
1 parent fdb330a commit 40a1c15
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions web/src/features/settings/components/locale.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import { HStack, Text, Select, Spacer } from "@chakra-ui/react";
import { useEffect, useState } from "react";
import { useNuiEvent } from "../../../hooks/useNuiEvent";
import { useLocales } from "../../../providers/LocaleProvider";
import { fetchNui } from "../../../utils/fetchNui";

Expand Down
3 changes: 1 addition & 2 deletions web/src/features/settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@ import {
Button,
Modal,
ModalBody,
ModalCloseButton,
ModalContent,
ModalFooter,
ModalHeader,
ModalOverlay,
useDisclosure,
} from "@chakra-ui/react";
import LocaleSetting from "./components/locale";
import { useEffect, useState } from "react";
import { useState } from "react";
import { useNuiEvent } from "../../hooks/useNuiEvent";
import { debugData } from "../../utils/debugData";
import { fetchNui } from "../../utils/fetchNui";
Expand Down
2 changes: 1 addition & 1 deletion web/src/providers/LocaleProvider.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Context, createContext, useContext, useEffect, useState } from "react";
import { Context, createContext, useContext, useState } from "react";
import { useNuiEvent } from "../hooks/useNuiEvent";
import { debugData } from "../utils/debugData";

Expand Down

0 comments on commit 40a1c15

Please sign in to comment.