Skip to content

Commit

Permalink
Fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
MEGUMMY1 committed Dec 22, 2024
1 parent 5db17ff commit f3cc324
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ChessBoard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function ChessBoard() {
const [history, setHistory] = useState<string[]>([chess.fen()]);
const [lectures, setLectures] = useState<any[]>([]);
const [selectedChannels, setSelectedChannels] = useState<string[]>([]);
const [isDropdownOpen, setIsDropdownOpen] = useState(false);
const [, setIsDropdownOpen] = useState(false);

const channelOptions = ["체스프릭김창훈", "슥슥이", "체스막타"];
const { data, isLoading } = useLectures(
Expand Down
2 changes: 1 addition & 1 deletion src/components/Layout/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Logo from "../../../assets/images/logo.png";
import Dropdown from "../Dropdown";

export default function Header() {
const [isDropdownOpen, setIsDropdownOpen] = useState(false);
const [, setIsDropdownOpen] = useState(false);

const handleReset = () => {
window.location.reload();
Expand Down

0 comments on commit f3cc324

Please sign in to comment.