From d993969f904ed170fc2403784f2641ac7f9462e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20Wodzyn=CC=81ski?= Date: Mon, 22 Feb 2021 11:01:17 +0100 Subject: [PATCH] Moved comment outside of the return statement, in an attempt to fix broken transpilation, see https://github.com/facebook/create-react-app/issues/8687. --- new-client/src/plugins/BaseWindowPlugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/new-client/src/plugins/BaseWindowPlugin.js b/new-client/src/plugins/BaseWindowPlugin.js index e0f5d79ce..4ad7076a6 100644 --- a/new-client/src/plugins/BaseWindowPlugin.js +++ b/new-client/src/plugins/BaseWindowPlugin.js @@ -252,8 +252,8 @@ class BaseWindowPlugin extends React.PureComponent { } render() { + // Don't render if "clean" query param is specified, otherwise go on return ( - // Don't render if "clean" query param is specified, otherwise go on this.props.app.config.mapConfig.map.clean !== true && this.renderWindow() ); }