Skip to content

Commit

Permalink
(fix): eslint is now a required check and will pass (#4285)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsinghvi authored Aug 12, 2024
1 parent ad90c4a commit d0a717d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const PlaygroundEnvironmentsExistRule: Rule = {

const nonExistentEnviromentIds = playgroundEnvironmentIds.filter((id) => !availableEnvironmentIds.has(id));

if (nonExistentEnviromentIds.length == 0) {
if (nonExistentEnviromentIds.length === 0) {
return [];
}

Expand Down

0 comments on commit d0a717d

Please sign in to comment.