From 2fb055f72894e44d3b6a0c9811c026bb6949c103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Fri, 17 Jul 2026 00:32:02 +0200 Subject: [PATCH] Fix --- packages/effect-lens-next/src/Lens.ts | 2 +- packages/effect-lens-next/src/View.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/effect-lens-next/src/Lens.ts b/packages/effect-lens-next/src/Lens.ts index ee9ebb4..82c8dd9 100644 --- a/packages/effect-lens-next/src/Lens.ts +++ b/packages/effect-lens-next/src/Lens.ts @@ -31,7 +31,7 @@ extends View.View { export const isLens = (u: unknown): u is Lens => Predicate.hasProperty(u, LensTypeId) -export const LensImplTypeId: unique symbol = Symbol.for("@effect-fc/Lens/v4/LensImpl") +export const LensImplTypeId: unique symbol = Symbol.for("@effect-lens/Lens/LensImpl") export type LensImplTypeId = typeof LensImplTypeId export declare namespace LensImpl { diff --git a/packages/effect-lens-next/src/View.ts b/packages/effect-lens-next/src/View.ts index 63987ca..c8a82a1 100644 --- a/packages/effect-lens-next/src/View.ts +++ b/packages/effect-lens-next/src/View.ts @@ -13,7 +13,7 @@ export interface View extends Pipeable.Pipe export const isView = (u: unknown): u is View => Predicate.hasProperty(u, ViewTypeId) -export const ViewImplTypeId: unique symbol = Symbol.for("@effect-fc/Lens/v4/ViewImpl") +export const ViewImplTypeId: unique symbol = Symbol.for("@effect-lens/Lens/ViewImpl") export type ViewImplTypeId = typeof ViewImplTypeId export declare namespace ViewImpl {