Skip to content

Commit 9efbed7

Browse files
fix: undefined comparison with === instead of == (#25)
1 parent 60b5391 commit 9efbed7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/plugin-tools/src/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const containerSatelliteId = async ({mode}: ConfigArgs): Promise<string> => {
7070

7171
const config = await readJunoConfig({mode});
7272

73-
if (config == undefined || !('satellite' in config)) {
73+
if (config === undefined || !('satellite' in config)) {
7474
return DOCKER_SATELLITE_ID;
7575
}
7676

0 commit comments

Comments
 (0)