Chore: Enable React strict mode (#53126)

pull/53148/head
kay delaney 3 years ago committed by GitHub
parent 194d0fe33b
commit b9598a08a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      public/app/AppWrapper.tsx

@ -113,6 +113,7 @@ export class AppWrapper extends React.Component<AppWrapperProps, AppWrapperState
};
return (
<React.StrictMode>
<Provider store={store}>
<I18nProvider>
<ErrorBoundaryAlert style="page">
@ -153,6 +154,7 @@ export class AppWrapper extends React.Component<AppWrapperProps, AppWrapperState
</ErrorBoundaryAlert>
</I18nProvider>
</Provider>
</React.StrictMode>
);
}
}

Loading…
Cancel
Save