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

This commit is contained in:
Julien Valverdé
2025-07-27 18:09:07 +02:00
parent 051226ebd4
commit 1c1659e82c
2 changed files with 21 additions and 9 deletions

View File

@@ -10,8 +10,8 @@ import * as React from "react"
const RouteComponent = Component.make(function* RouteComponent() {
const [value, setValue] = React.useState("")
const myRef = yield* SubscriptionRef.make(Chunk.make({ name: "person 1" } as const))
// const myRef = yield* SubscriptionRef.make(Chunk.empty<{ readonly name: "person 1" }>())
// const myRef = yield* SubscriptionRef.make(Chunk.make({ name: "person 1" } as const))
const myRef = yield* SubscriptionRef.make(Chunk.empty<{ readonly name: "person 1" }>())
const mySubRef = SubscriptionSubRef.makeFromChunkRef(myRef, 0)
return (