diff --git a/src/components/NotFound/NotFound.tsx b/src/components/NotFound/NotFound.tsx
index 2f5d290..96d6105 100644
--- a/src/components/NotFound/NotFound.tsx
+++ b/src/components/NotFound/NotFound.tsx
@@ -27,7 +27,7 @@ const StyledHeading = styled(Typography)({
const NotFound: React.FC = () => {
const history = useHistory();
- const handleGomHome = useCallback(() => {
+ const handleGoHome = useCallback(() => {
history.push('/');
}, [history]);
@@ -37,7 +37,7 @@ const NotFound: React.FC = () => {
{NOT_FOUND_TEXT}
-