Skip to content

Commit 31294c5

Browse files
committed
Type fix
1 parent 13dcbf8 commit 31294c5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/app/src/components/workbench

packages/app/src/components/workbench/logs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class DevtoolsSource extends Element {
8080
<wdio-devtools-list
8181
label="Parameters"
8282
class="text-xs"
83-
.list="${(this.command.args || []).reduce((acc, val, i) => {
83+
.list="${(this.command.args || []).reduce((acc: Record<string, unknown>, val: unknown, i: number) => {
8484
const def = this.#commandDefinition
8585
const paramName = def?.parameters?.[i]?.name ?? i
8686
acc[paramName] = val

0 commit comments

Comments
 (0)