Fix iterableUnion types
This commit is contained in:
parent
2ec94e8a69
commit
0570deffa2
2 changed files with 3 additions and 3 deletions
|
@ -25,6 +25,6 @@ export class StopGapWidgetDriver extends WidgetDriver {
|
|||
}
|
||||
|
||||
public async validateCapabilities(requested: Set<Capability>): Promise<Set<Capability>> {
|
||||
return iterableUnion(requested, new Set(this.allowedCapabilities));
|
||||
return new Set(iterableUnion(requested, this.allowedCapabilities));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue