Skip to content

Commit 3f6cf4d

Browse files
authored
Update group.ts
1 parent d39f51d commit 3f6cf4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/number-flow/src/group.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ export default class NumberFlowGroup extends ServerSafeHTMLElement {
3131

3232
private _flows = new Set<NumberFlow>()
3333

34-
_addDescendant = (flow: NumberFlow) => {
34+
private _addDescendant = (flow: NumberFlow) => {
3535
flow.batched = true
3636
this._flows.add(flow)
3737
}
38-
_removeDescendant = (flow: NumberFlow) => {
38+
private _removeDescendant = (flow: NumberFlow) => {
3939
flow.batched = false
4040
this._flows.delete(flow)
4141
}

0 commit comments

Comments
 (0)