From 23ebcaa46b525aeb9ffb4aa5eb955989707b60ce Mon Sep 17 00:00:00 2001 From: Zak Burke Date: Thu, 21 Nov 2024 12:04:53 -0500 Subject: [PATCH] disable StrictMode via STCLI-256 instead --- src/App.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/App.js b/src/App.js index edde8c23d..7f72ce325 100644 --- a/src/App.js +++ b/src/App.js @@ -16,12 +16,6 @@ import { eventsPortal } from './constants'; import { getStoredTenant } from './loginServices'; const StrictWrapper = ({ children }) => { - /* - WIP. THIS IS JUST HARDCODED FOR INVESTIGATION PURPOSES - Need to be able to pass `disableStrictMode` flag to karma tests - */ - return children; - if (config.disableStrictMode) { return children; }