0.1.3 #5

Merged
Thilawyn merged 104 commits from next into master 2025-03-11 01:44:38 +01:00
Showing only changes of commit 5f60d03d83 - Show all commits

View File

@@ -37,7 +37,7 @@ export function VNewTodo() {
<Button
onClick={() => TodosState.TodosState.pipe(
Effect.flatMap(state => state.prepend(todo)),
Effect.flatMap(() => createEmptyTodo),
Effect.andThen(createEmptyTodo),
Effect.map(setTodo),
runSync,
)}