Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.

Commit 0c2503b

Browse files
committed
fixed typo
1 parent 61b4a6f commit 0c2503b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

benchmark/benchmarks/react/counter/bench/agilets.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import reactIntegration, { useAgile } from '@agile-ts/react';
55

66
logCodeManager.allowLogging = false;
77
shared.integrate(reactIntegration);
8-
shared.config.bucket = true;
98

109
const COUNT = createState(0);
1110

packages/core/src/utils.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,7 @@ export function extractObservers(
4545
| Array<{ [key: string]: Observer | undefined }>
4646
| { [key: string]: Observer | undefined } {
4747
const observers: Array<{ [key: string]: Observer | undefined }> = [];
48-
const tempInstancesArray = normalizeArray(instances, {
49-
createUndefinedArray: true,
50-
});
48+
const tempInstancesArray = normalizeArray(instances, true);
5149

5250
// Extract Observers from specified Instances
5351
for (const instance of tempInstancesArray) {

0 commit comments

Comments
 (0)