diff --git a/src/components/molecules/ToDoListEmptyList/ToDoListEmptyListMessage.tsx b/src/components/molecules/ToDoListEmptyList/ToDoListEmptyListMessage.tsx
index d349c8f..580c5ce 100644
--- a/src/components/molecules/ToDoListEmptyList/ToDoListEmptyListMessage.tsx
+++ b/src/components/molecules/ToDoListEmptyList/ToDoListEmptyListMessage.tsx
@@ -4,9 +4,9 @@ export function ToDoListEmptyListMessage() {
return (
- Você ainda não tem tarefas cadastradas
+ You don't have tasks registered yet
- Crie tarefas e organize seus itens a fazer
+ Create tasks and organize your to-do items
);
}
diff --git a/src/components/molecules/ToDoListForm/ToDoListFormRoot.tsx b/src/components/molecules/ToDoListForm/ToDoListFormRoot.tsx
index 3a0eca7..360eb1f 100644
--- a/src/components/molecules/ToDoListForm/ToDoListFormRoot.tsx
+++ b/src/components/molecules/ToDoListForm/ToDoListFormRoot.tsx
@@ -9,7 +9,7 @@ import { useBoundStore } from "../../../store";
import { useShallow } from "zustand/react/shallow";
const newTodoFormSchema = z.object({
- toDoContent: z.string().min(1, {"message": "Don't forget to add your To-do content!"})
+ toDoContent: z.string().min(1, {"message": "Don't forget to add your to-do content!"})
})
export type NewTodoFormSchema = z.infer;