Skip to content

Commit

Permalink
fix unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
acocalypso committed Apr 26, 2024
1 parent 4905514 commit 11656bb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/shared/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import React from "react";

export default function Nav() {

const versionNumber = "2.2.0";
const versionNumber = "2.2.1";

return (

Expand Down
1 change: 0 additions & 1 deletion src/components/shared/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ export default function Nav() {
const [modalOpen, setModalOpen] = useState(false);
const [devEnabled, setDevEnabled] = useState(false);
const [navbarOpen, setNavbarOpen] = useState(false);
const versionNumber = "2.2.1";

useEffect(() => {
const devState = localStorage.getItem("devState");
Expand Down
1 change: 1 addition & 0 deletions src/components/shared/Themesettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ function Modal() {

export default Modal;

// eslint-disable-next-line no-unused-vars
function handleThemeChange(arg0: string): void {
throw new Error('Function not implemented.');
}

0 comments on commit 11656bb

Please sign in to comment.