Skip to content

Commit b573477

Browse files
committed
correct equality check for strings
1 parent f257800 commit b573477

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/input.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function parseOptionalStringArrayInput(
2727

2828
if (input === undefined) {
2929
return [];
30-
} else if (input === "null") {
30+
} else if (input == "null") {
3131
return undefined;
3232
}
3333

0 commit comments

Comments
 (0)