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 {