refactor: remove unused imports from index.tsx and render-date.tsx
This commit is contained in:
@@ -5,7 +5,6 @@ import { NotFound, Forbidden, Maintenance, ComingSoon, AgGridProvider } from '@r
|
||||
import { LoadingScreen } from '../core/components/loading-screen';
|
||||
import { useThemeStore } from '../core/stores/theme.store';
|
||||
import { initializeAndPurgeHistoryBackground } from './modules/layouts/hooks/useHistoryTracker';
|
||||
import { appStorage, AppStorageKey } from '../core/storage/local';
|
||||
|
||||
const AuthModule = lazy(() => import('./auth'));
|
||||
const AppModule = lazy(() => import('./modules'));
|
||||
@@ -28,7 +27,6 @@ export default function App() {
|
||||
// Execution runs purely in the background (fire and forget)
|
||||
// Will not block the initial UI rendering process
|
||||
initializeAndPurgeHistoryBackground();
|
||||
// appStorage.setItem(AppStorageKey.USER_ID, 'firman');
|
||||
}, []);
|
||||
|
||||
return (
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
import { Paper, Box, Stack } from '@repo/ui/components';
|
||||
import { FieldTextInput } from '@repo/ui/form';
|
||||
import { useEnterpriseModuleTranslationContext, EnterpriseFormPageProvider, FormPageType } from '@repo/ui/foundations';
|
||||
import { useMemo } from 'react';
|
||||
import { fullPageModuleConfig } from '../../domain/constants';
|
||||
|
||||
Reference in New Issue
Block a user