diff --git a/src/App.tsx b/src/App.tsx
index 25c3b89fda..61b41b7290 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -22,7 +22,6 @@ export const App: React.FC = () => {
{todos && }
- {/* Hide the footer if there are no todos */}
{todos.length !== 0
&& (
diff --git a/src/components/CaseOfErrorMessage/CaseOfErrorMessage.tsx b/src/components/CaseOfErrorMessage/CaseOfErrorMessage.tsx
index cebd6b0752..44fc298447 100644
--- a/src/components/CaseOfErrorMessage/CaseOfErrorMessage.tsx
+++ b/src/components/CaseOfErrorMessage/CaseOfErrorMessage.tsx
@@ -2,9 +2,6 @@
import { useTodo } from '../../provider/todoProvider';
-/* Notification is shown in case of any error */
-/* Add the 'hidden' class to hide the message smoothly */
-
export const CaseOfErrorMessage = () => {
const { error, closeErrorMessage } = useTodo();
diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx
index b2ba5c3b1d..4d6366870d 100644
--- a/src/components/Footer/Footer.tsx
+++ b/src/components/Footer/Footer.tsx
@@ -21,7 +21,6 @@ export const Footer = () => {
return (