feat(connections): iterate add button availability

This commit is contained in:
Ali BARIN
2024-12-12 22:42:32 +00:00
parent bccd56f994
commit c78646ed8e
5 changed files with 58 additions and 35 deletions

View File

@@ -1,6 +1,5 @@
import { createRoot } from 'react-dom/client';
import { Settings } from 'luxon';
import { setUseWhatChange } from '@simbathesailor/use-what-changed';
import ThemeProvider from 'components/ThemeProvider';
import IntlProvider from 'components/IntlProvider';
@@ -15,8 +14,6 @@ import reportWebVitals from './reportWebVitals';
// Sets the default locale to English for all luxon DateTime instances created afterwards.
Settings.defaultLocale = 'en';
setUseWhatChange(process.env.NODE_ENV === 'development');
const container = document.getElementById('root');
const root = createRoot(container);