From a9448f55cfb91b0bcb8c2b21e49fdcb97df0096a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Tue, 1 Jul 2025 13:32:25 +0200 Subject: [PATCH] Fix --- packages/effect-components/src/ReactHook.ts | 2 +- packages/effect-components/src/ReactManagedRuntime.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/effect-components/src/ReactHook.ts b/packages/effect-components/src/ReactHook.ts index 2ef928e..a41d23a 100644 --- a/packages/effect-components/src/ReactHook.ts +++ b/packages/effect-components/src/ReactHook.ts @@ -1,4 +1,4 @@ -import { type Context, Effect, ExecutionStrategy, Exit, type Layer, pipe, Ref, Runtime, Scope, Stream, SubscriptionRef } from "effect" +import { type Context, Effect, ExecutionStrategy, Exit, type Layer, pipe, Ref, Runtime, Scope, Stream, type SubscriptionRef } from "effect" import * as React from "react" import { SetStateAction } from "./types/index.js" diff --git a/packages/effect-components/src/ReactManagedRuntime.ts b/packages/effect-components/src/ReactManagedRuntime.ts index 0266b62..3d8ae41 100644 --- a/packages/effect-components/src/ReactManagedRuntime.ts +++ b/packages/effect-components/src/ReactManagedRuntime.ts @@ -1,4 +1,4 @@ -import { Effect, type Layer, ManagedRuntime, Runtime } from "effect" +import { Effect, type Layer, ManagedRuntime, type Runtime } from "effect" import * as React from "react"