mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 17:45:22 +00:00
eslint: strict equality
Enforce use of ===/!== and fix existing issues.
This commit is contained in:
committed by
David Lechner
parent
1d9dd82191
commit
e01fb1fbe9
+2
-2
@@ -205,9 +205,9 @@ function* handleEditorActivateFile(
|
||||
yield* put(editorOpenFile(action.uuid));
|
||||
|
||||
const { didFailToOpen } = yield* race({
|
||||
didOpen: take(editorDidOpenFile.when((a) => a.uuid == action.uuid)),
|
||||
didOpen: take(editorDidOpenFile.when((a) => a.uuid === action.uuid)),
|
||||
didFailToOpen: take(
|
||||
editorDidFailToOpenFile.when((a) => a.uuid == action.uuid),
|
||||
editorDidFailToOpenFile.when((a) => a.uuid === action.uuid),
|
||||
),
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user