Skip to content

Commit

Permalink
fix(reactive): remove redundant FactoryNameSymbol field
Browse files Browse the repository at this point in the history
  • Loading branch information
justmoon committed Sep 10, 2024
1 parent 4b37ec1 commit f5b8f0d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/lib-reactive/src/mapped.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,7 @@ class MappedImplementation<
TOutput,
TBase extends object,
> extends Reactive<Map<TInput, InternalMapEntry<TOutput>>> {
[MappedSymbol] = true as const;
[FactoryNameSymbol] = "anonymous"
[MappedSymbol] = true as const

private baseSet: ReactiveSource<Set<TInput>>
private internalMap = new Map<TInput, InternalMapEntry<TOutput>>()
Expand Down

0 comments on commit f5b8f0d

Please sign in to comment.