Skip to content

Commit 82d7e83

Browse files
ci: apply automated fixes
1 parent 0743536 commit 82d7e83

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

packages/angular-virtual/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ function injectVirtualizerBase<
104104
// allowing it to be created after input/model signals are initialized.
105105
// Options are untracked to maintain a single instance of the Virtualizer.
106106
const lazyVirtualizer = computed(
107-
() => new Virtualizer(untracked(resolvedOptions))
107+
() => new Virtualizer(untracked(resolvedOptions)),
108108
)
109109

110110
// The reference in onChange is safe since computed signals are not evaluated eagerly.

packages/angular-virtual/src/proxy.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ type SignalProxy<
1010
> = {
1111
[K in TMethodsToPassThrough]: TInput[K]
1212
} & {
13-
[K in TAttributesToTransformToSignals]: Signal<TInput[K]>
14-
} & {
15-
[K in TMethodsToTrack]: TInput[K]
16-
} & {
17-
[K in TMethodsToTransformToSignals]: Signal<ReturnType<TInput[K]>>
18-
}
13+
[K in TAttributesToTransformToSignals]: Signal<TInput[K]>
14+
} & {
15+
[K in TMethodsToTrack]: TInput[K]
16+
} & {
17+
[K in TMethodsToTransformToSignals]: Signal<ReturnType<TInput[K]>>
18+
}
1919

2020
export function signalProxy<
2121
TInput extends Record<string | symbol, any>,

0 commit comments

Comments
 (0)