0.1.0 #1

Merged
Thilawyn merged 87 commits from next into master 2025-01-18 00:54:42 +01:00
Showing only changes of commit 14e028e8c8 - Show all commits

View File

@@ -11,7 +11,7 @@ export function VTodos() {
// Sync changes to the todos with the local storage
Reffuse.useFork(TodosState.TodosState.pipe(
Effect.flatMap(state =>
Stream.runForEach(state.todos, () => state.saveToLocalStorage)
Stream.runForEach(state.todos.changes, () => state.saveToLocalStorage)
)
))