Skip to content

Commit

Permalink
fix(reference): private constructor params
Browse files Browse the repository at this point in the history
  • Loading branch information
njfamirm authored and alimd committed Dec 26, 2023
1 parent ed82924 commit 926aa9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/store-reference/src/collection-reference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ export class CollectionReference<TItem extends Record<string, unknown> = Record<
* ```
*/
constructor(
protected context__: CollectionContext<TItem>,
protected updatedCallback__: (from: CollectionReference<TItem>) => void,
private context__: CollectionContext<TItem>,
private updatedCallback__: (from: CollectionReference<TItem>) => void,
) {
const meta = this.context__.meta;
let id = meta.region + '/' + meta.name;
Expand Down

0 comments on commit 926aa9d

Please sign in to comment.