Make linter happy =D

This commit is contained in:
Calli
2023-10-02 13:34:28 +03:00
parent 8fadb703a8
commit 46e92fc74a
3 changed files with 3 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ const StackItem = styled(Stack)(({ theme }) => ({
alignItems: "center",
}));
export const NoPlanetCard = ({}: {}) => {
export const NoPlanetCard = () => {
const theme = useTheme();
return (
<StackItem

View File

@@ -2,7 +2,7 @@ import { Stack, Typography, styled, useTheme } from "@mui/material";
import Image from "next/image";
import { AccessToken, Planet, PlanetInfo, PlanetInfoUniverse } from "@/types";
import { Api } from "@/esi-api";
import { forwardRef, useEffect, useState } from "react";
import React, { forwardRef, useEffect, useState } from "react";
import { DateTime } from "luxon";
import { EXTRACTOR_TYPE_IDS } from "@/const";
import Countdown from "react-countdown";

View File

@@ -1,6 +1,7 @@
import "./globals.css";
import { Analytics } from "@vercel/analytics/react";
import { Inter } from "next/font/google";
import React from 'react'
const inter = Inter({ subsets: ["latin"] });