From 90020daccba0bd4fe78c9a5f4037d2a65f35bc07 Mon Sep 17 00:00:00 2001 From: Robin Davies Date: Tue, 11 Oct 2022 15:13:24 -0400 Subject: [PATCH] Correct typescript warning. --- react/src/AppThemed.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/src/AppThemed.tsx b/react/src/AppThemed.tsx index 502df30..be4c6e3 100644 --- a/react/src/AppThemed.tsx +++ b/react/src/AppThemed.tsx @@ -584,7 +584,7 @@ const AppThemed = withStyles(appStyles)(class extends ResizeResponsiveComponent< displayState: newState, canFullScreen: supportsFullScreen() && !this.model_.isAndroidHosted() }); - if (newState == State.Ready) + if (newState === State.Ready) { if (!this.onboardingShown) {