Remove undefined container className property

the `container` property is not  defined in the example  snippet and causes an error when the home page renders as the snippet was written.

I removed the className property to fix the issue.

Signed-off-by: Tate Hanawalt <tate@tatehanawalt.com>
This commit is contained in:
Tate
2022-06-09 23:27:48 -04:00
committed by Tate Hanawalt
parent ecf4bc5590
commit 3bc59fa19f
+1 -1
View File
@@ -157,7 +157,7 @@ export const HomePage = () => {
return (
<Grid container spacing={3}>
<Grid item xs={12} md={4}>
<HomePageCompanyLogo className={container} />
<HomePageCompanyLogo />
</Grid>
</Grid>
);