Skip to content

Commit

Permalink
improve landing faq
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler committed Sep 2, 2024
1 parent f5c42c6 commit 78f76c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/activitys/LandingActivity/components/FAQ.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ interface FAQProps {
}

const FAQ = (props: FAQProps) => {
const [expanded, setExpanded] = React.useState<number | false>(0);
const [expanded, setExpanded] = React.useState<number | false>(false);

const handleChange = (panel: number) => (event: React.SyntheticEvent, newExpanded: boolean) => {
const handleChange = (panel: number) => (_: React.SyntheticEvent, newExpanded: boolean) => {
setExpanded(newExpanded ? panel : false);
};

Expand Down

0 comments on commit 78f76c0

Please sign in to comment.