diff --git a/src/App.tsx b/src/App.tsx index eab0173..166d575 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -81,7 +81,7 @@ const theme = createTheme({ function App() { const [tabValue, setTabValue] = useState(0); - const handleTabChange = (event: React.SyntheticEvent, newValue: number) => { + const handleTabChange = (_event: React.SyntheticEvent, newValue: number) => { setTabValue(newValue); };