Skip to content

Commit

Permalink
fix(texts): keep texts in english
Browse files Browse the repository at this point in the history
  • Loading branch information
micael-diniz committed Oct 15, 2023
1 parent c46f228 commit 8dcf2fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ export function ToDoListEmptyListMessage() {
return (
<div>
<Text className="font-bold text-gray-300">
Você ainda não tem tarefas cadastradas
You don't have tasks registered yet
</Text>
<Text className="font-normal text-gray-300">Crie tarefas e organize seus itens a fazer</Text>
<Text className="font-normal text-gray-300">Create tasks and organize your to-do items</Text>
</div>
);
}
2 changes: 1 addition & 1 deletion src/components/molecules/ToDoListForm/ToDoListFormRoot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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<typeof newTodoFormSchema>;

Expand Down

0 comments on commit 8dcf2fe

Please sign in to comment.