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", alignItems: "center",
})); }));
export const NoPlanetCard = ({}: {}) => { export const NoPlanetCard = () => {
const theme = useTheme(); const theme = useTheme();
return ( return (
<StackItem <StackItem

View File

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

View File

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