From df2999d628635e84458dfd71f3524c4d3a440fd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Thu, 16 Jul 2026 23:06:39 +0200 Subject: [PATCH] Fix --- packages/effect-lens-next/src/Lens.ts | 21 ++------------------- packages/effect-lens-next/src/View.ts | 2 +- 2 files changed, 3 insertions(+), 20 deletions(-) diff --git a/packages/effect-lens-next/src/Lens.ts b/packages/effect-lens-next/src/Lens.ts index 3dddf59..d1a7a5c 100644 --- a/packages/effect-lens-next/src/Lens.ts +++ b/packages/effect-lens-next/src/Lens.ts @@ -1,25 +1,8 @@ -import { - Array, - type Cause, - Chunk, - type Context, - Effect, - Function, - identity, - Option, - Pipeable, - Predicate, - PubSub, - Ref, - Semaphore, - Stream, - SubscriptionRef, - SynchronizedRef, -} from "effect" +import { Array, type Cause, Chunk, type Context, Effect, Function, identity, Option, Pipeable, Predicate, PubSub, Ref, Semaphore, Stream, SubscriptionRef, SynchronizedRef } from "effect" import * as View from "./View.js" -export const LensTypeId: unique symbol = Symbol.for("@effect-fc/Lens/v4/Lens") +export const LensTypeId: unique symbol = Symbol.for("@effect-lens/Lens/Lens") export type LensTypeId = typeof LensTypeId /** diff --git a/packages/effect-lens-next/src/View.ts b/packages/effect-lens-next/src/View.ts index c6871db..27cd1d8 100644 --- a/packages/effect-lens-next/src/View.ts +++ b/packages/effect-lens-next/src/View.ts @@ -1,7 +1,7 @@ import { Array, type Cause, Chunk, Effect, Function, Iterable, Option, Pipeable, Predicate, type Result, type Schedule, Stream } from "effect" -export const ViewTypeId: unique symbol = Symbol.for("@effect-fc/Lens/v4/View") +export const ViewTypeId: unique symbol = Symbol.for("@effect-lens/View/View") export type ViewTypeId = typeof ViewTypeId export interface View extends Pipeable.Pipeable {