diff --git a/src/components/navigation/BottomNavigation.tsx b/src/components/navigation/BottomNavigation.tsx index 7c5077b..1128bdc 100644 --- a/src/components/navigation/BottomNavigation.tsx +++ b/src/components/navigation/BottomNavigation.tsx @@ -33,7 +33,7 @@ const BottomNavigation = () => { return activeItem ? activeItem.path : '/feed'; }; - const handleChange = (event: React.SyntheticEvent, newValue: string) => { + const handleChange = (_event: React.SyntheticEvent, newValue: string) => { navigate(newValue); }; diff --git a/src/pages/AccountPage.tsx b/src/pages/AccountPage.tsx index 4acad64..62e6052 100644 --- a/src/pages/AccountPage.tsx +++ b/src/pages/AccountPage.tsx @@ -1,5 +1,5 @@ -import { Box, Typography, Container, Avatar, Paper, Grid, Button } from '@mui/material'; -import { Settings, Edit } from '@mui/icons-material'; +import { Box, Typography, Container, Avatar, Paper, Button } from '@mui/material'; +import { Edit } from '@mui/icons-material'; const AccountPage = () => { return ( @@ -9,8 +9,8 @@ const AccountPage = () => { My Account - - + + { Edit Profile - + - + Account Settings @@ -40,8 +40,8 @@ const AccountPage = () => { Manage your account preferences and settings. - - + + );