From 6b9c177ae7b397ab874f7dc98fbf7f9358d19b51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Fri, 24 Oct 2025 00:00:14 +0200 Subject: [PATCH] Fix --- packages/effect-fc/src/Async.ts | 2 +- packages/effect-fc/src/Component.ts | 2 +- packages/effect-fc/src/Form.ts | 2 +- packages/effect-fc/src/Memoized.ts | 2 +- packages/effect-fc/src/ReactRuntime.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/effect-fc/src/Async.ts b/packages/effect-fc/src/Async.ts index c9f1a2a..a0dba11 100644 --- a/packages/effect-fc/src/Async.ts +++ b/packages/effect-fc/src/Async.ts @@ -4,7 +4,7 @@ import * as React from "react" import * as Component from "./Component.js" -export const TypeId: unique symbol = Symbol.for("effect-fc/Async/Async") +export const TypeId: unique symbol = Symbol.for("@effect-fc/Async/Async") export type TypeId = typeof TypeId export interface Async extends Async.Options { diff --git a/packages/effect-fc/src/Component.ts b/packages/effect-fc/src/Component.ts index e6f4a2e..69a24f4 100644 --- a/packages/effect-fc/src/Component.ts +++ b/packages/effect-fc/src/Component.ts @@ -5,7 +5,7 @@ import * as React from "react" import { Memoized } from "./index.js" -export const TypeId: unique symbol = Symbol.for("effect-fc/Component/Component") +export const TypeId: unique symbol = Symbol.for("@effect-fc/Component/Component") export type TypeId = typeof TypeId export interface Component

diff --git a/packages/effect-fc/src/Form.ts b/packages/effect-fc/src/Form.ts index 8328536..b78d296 100644 --- a/packages/effect-fc/src/Form.ts +++ b/packages/effect-fc/src/Form.ts @@ -9,7 +9,7 @@ import * as SubscriptionRef from "./SubscriptionRef.js" import * as SubscriptionSubRef from "./SubscriptionSubRef.js" -export const FormTypeId: unique symbol = Symbol.for("effect-fc/Form/Form") +export const FormTypeId: unique symbol = Symbol.for("@effect-fc/Form/Form") export type FormTypeId = typeof FormTypeId export interface Form diff --git a/packages/effect-fc/src/Memoized.ts b/packages/effect-fc/src/Memoized.ts index 7687be1..61cea91 100644 --- a/packages/effect-fc/src/Memoized.ts +++ b/packages/effect-fc/src/Memoized.ts @@ -3,7 +3,7 @@ import { type Equivalence, Function, Predicate } from "effect" import type * as Component from "./Component.js" -export const TypeId: unique symbol = Symbol.for("effect-fc/Memoized/Memoized") +export const TypeId: unique symbol = Symbol.for("@effect-fc/Memoized/Memoized") export type TypeId = typeof TypeId export interface Memoized

extends Memoized.Options

{ diff --git a/packages/effect-fc/src/ReactRuntime.ts b/packages/effect-fc/src/ReactRuntime.ts index 2b1bc01..cdbe329 100644 --- a/packages/effect-fc/src/ReactRuntime.ts +++ b/packages/effect-fc/src/ReactRuntime.ts @@ -4,7 +4,7 @@ import * as React from "react" import * as Component from "./Component.js" -export const TypeId: unique symbol = Symbol.for("effect-fc/ReactRuntime/ReactRuntime") +export const TypeId: unique symbol = Symbol.for("@effect-fc/ReactRuntime/ReactRuntime") export type TypeId = typeof TypeId export interface ReactRuntime {