fixing eslint

This commit is contained in:
Lucian Petri
2022-12-30 03:13:41 +02:00
parent 5d719e274a
commit 4d53bbe7a8
5 changed files with 18792 additions and 7892 deletions
+18787 -7886
View File
File diff suppressed because it is too large Load Diff
@@ -1,4 +1,4 @@
import { ArrowUpIcon, ArrowDownIcon } from "@heroicons/react/20/solid";
import { ArrowDownIcon, ArrowUpIcon } from "@heroicons/react/20/solid";
import { Button } from "@chakra-ui/react";
import clsx from "clsx";
@@ -1,9 +1,8 @@
import { Switch, useColorMode } from "@chakra-ui/react";
import React from "react";
type Props = {};
const ColorModeSwitch = (props: Props) => {
const ColorModeSwitch = () => {
const { colorMode, toggleColorMode } = useColorMode();
return (
<Switch
+1 -1
View File
@@ -1,6 +1,6 @@
import { Button, Input, Stack } from "@chakra-ui/react";
import Head from "next/head";
import { FaDiscord, FaEnvelope, FaGithub, FaBug } from "react-icons/fa";
import { FaBug, FaDiscord, FaEnvelope, FaGithub } from "react-icons/fa";
import { getCsrfToken, getProviders, signIn } from "next-auth/react";
import React, { useRef } from "react";
import Link from "next/link";
+2 -2
View File
@@ -1,6 +1,6 @@
import { extendTheme, type ThemeConfig } from "@chakra-ui/react";
import { type ThemeConfig, extendTheme } from "@chakra-ui/react";
import { containerTheme } from "./components/Container";
import { Styles, mode } from "@chakra-ui/theme-tools";
import { Styles } from "@chakra-ui/theme-tools";
const config: ThemeConfig = {
initialColorMode: "light",