Skip to content

Commit f8ff3b0

Browse files
authored
Fix unreserve logic (#1231)
1 parent 1a5e457 commit f8ff3b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/name-resolver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class NameResolver {
3030
}
3131

3232
unreserve(names: string[]) {
33-
this.reservedNames.filter(
33+
this.reservedNames = this.reservedNames.filter(
3434
(reservedName) => !names.some((name) => name === reservedName),
3535
);
3636
}

0 commit comments

Comments
 (0)