From 0efdeaaa1f748f5fd7fd38413808a5b87ae9f1ee Mon Sep 17 00:00:00 2001 From: Xiao Gui <xgui3783@gmail.com> Date: Tue, 21 Jun 2022 09:31:54 +0200 Subject: [PATCH] fix lint --- src/state/atlasSelection/effects.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/atlasSelection/effects.ts b/src/state/atlasSelection/effects.ts index 54fe35a6a..2c95b7560 100644 --- a/src/state/atlasSelection/effects.ts +++ b/src/state/atlasSelection/effects.ts @@ -56,7 +56,7 @@ export class Effect { /** * if trans-species, return default state for navigation */ - if (previous?.atlas?.["@id"] !== current?.atlas?.["@id"]) { + if (previous?.atlas?.["@id"] !== current?.atlas?.["@id"]) { return of({ navigation: null }) -- GitLab