Skip to content

Commit

Permalink
Address faulty React import.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathewjordan committed Nov 25, 2024
1 parent 2db697d commit cc33039
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/Scroll/Panel/Language/Option.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React, { useContext } from "react";
import {
StyledScrollLanguageOption,
StyledScrollLanguageOptionCheckbox,
StyledScrollLanguageOptionIndicator,
} from "./Language.styled";

import { ScrollContext } from "src/context/scroll-context";
import { useContext } from "react";

const LanguageOption = ({
lang,
Expand Down Expand Up @@ -38,8 +38,6 @@ const LanguageOption = ({
});
};

// console.log({ isChecked, lang });

return (
<StyledScrollLanguageOption
checked={isChecked}
Expand Down

0 comments on commit cc33039

Please sign in to comment.