Skip to content

Commit

Permalink
Fixing some warnings in the console
Browse files Browse the repository at this point in the history
  • Loading branch information
LuizFNJ committed Jan 11, 2025
1 parent c6ff407 commit d26d91d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Footer/AletheiaSocialMediaIcons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Grid } from "@mui/material";
const AletheiaSocialMediaIcons = () => {
const [nameSpace] = useAtom(currentNameSpace);
return (
<Grid container xs={12}
<Grid container item xs={12}
style={{justifyContent:"center"}}>
<SocialIcon
url="https://www.instagram.com/aletheiafact"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header/HeaderContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const HeaderContent = () => {
<Logo />
</a>
<SearchOverlay />
<HeaderActionsStyle xs={7} sm={5} md={3}>
<HeaderActionsStyle item xs={7} sm={5} md={3}>
{vw?.xs && !router.pathname.includes("/home-page") && (
<AletheiaButton
onClick={handleClickSearchIcon}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Home/HomeStats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const HomeStats = ({ stats }) => {
const { t } = useTranslation();

return (
<Grid container
<Grid container item
sm={9}
md={8}
xl={6}
Expand Down

0 comments on commit d26d91d

Please sign in to comment.