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

This commit is contained in:
Julien Valverdé
2025-06-17 22:24:02 +02:00
parent 0d3e09354e
commit 0b7a2dbe92
3 changed files with 8 additions and 13 deletions

View File

@@ -4,6 +4,7 @@ import { createFileRoute } from "@tanstack/react-router"
import { GetRandomValues, makeUuid4 } from "@typed/id"
import { Console, Effect, Option } from "effect"
import { useEffect, useState } from "react"
import { PropertyPath } from "reffuse/types"
interface Node {
@@ -11,6 +12,7 @@ interface Node {
readonly left?: Node
readonly right?: Node
}
type NodePaths = PropertyPath.Paths<Node>
const makeUuid = Effect.provide(makeUuid4, GetRandomValues.CryptoRandom)