diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-06-03 03:32:58 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-06-03 03:32:58 -0700 |
| commit | 86188081fd363ac91943b3f5d7e2b9254c4f9ad9 (patch) | |
| tree | a6ef9f8e9bb4f810790297578873905d3d0bc81d | |
| parent | 8aef4deecc0e64ac294331ba1e13d57b7e6b592c (diff) | |
fix: eslint issues
| -rw-r--r-- | src/components/Footer/index.tsx | 2 | ||||
| -rw-r--r-- | src/components/Guess/index.styled.ts | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/components/Footer/index.tsx b/src/components/Footer/index.tsx index 4618042..12dce6b 100644 --- a/src/components/Footer/index.tsx +++ b/src/components/Footer/index.tsx @@ -1,5 +1,5 @@ import React from "react"; -import { IoBug, IoHeart } from "react-icons/io5"; +import { IoBug } from "react-icons/io5"; import { Button } from ".."; import * as Styled from "./index.styled"; diff --git a/src/components/Guess/index.styled.ts b/src/components/Guess/index.styled.ts index dac85ab..3fabef1 100644 --- a/src/components/Guess/index.styled.ts +++ b/src/components/Guess/index.styled.ts @@ -1,6 +1,7 @@ import styled from "styled-components"; import { GuessState } from "../../types/guess"; +//eslint-disable-next-line const stateColor = (theme: any, active: boolean, state: GuessState | undefined) => { if (active) return theme.border; if (state === GuessState.Correct) return theme.green; |
