Fix
All checks were successful
Lint / lint (push) Successful in 12s

This commit is contained in:
Julien Valverdé
2026-02-27 10:49:54 +01:00
parent 97246845da
commit 8e81ec85de
3 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ const TodosStateLive = TodosState.Default("todos")
const Index = Component.makeUntraced("Index")(function*() {
const TodosFC = yield* Effect.provide(
Todos.use,
yield* Component.useContext(TodosStateLive),
yield* Component.useContextFromLayer(TodosStateLive),
)
return <TodosFC />