Merge pull request 'refactor: remove unused imports from index.tsx and render-date.tsx' (#37) from core/page-provider into main
Reviewed-on: eigen/fe-monorepo-template#37
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 { LoadingScreen } from '../core/components/loading-screen';
|
||||||
import { useThemeStore } from '../core/stores/theme.store';
|
import { useThemeStore } from '../core/stores/theme.store';
|
||||||
import { initializeAndPurgeHistoryBackground } from './modules/layouts/hooks/useHistoryTracker';
|
import { initializeAndPurgeHistoryBackground } from './modules/layouts/hooks/useHistoryTracker';
|
||||||
import { appStorage, AppStorageKey } from '../core/storage/local';
|
|
||||||
|
|
||||||
const AuthModule = lazy(() => import('./auth'));
|
const AuthModule = lazy(() => import('./auth'));
|
||||||
const AppModule = lazy(() => import('./modules'));
|
const AppModule = lazy(() => import('./modules'));
|
||||||
@@ -28,7 +27,6 @@ export default function App() {
|
|||||||
// Execution runs purely in the background (fire and forget)
|
// Execution runs purely in the background (fire and forget)
|
||||||
// Will not block the initial UI rendering process
|
// Will not block the initial UI rendering process
|
||||||
initializeAndPurgeHistoryBackground();
|
initializeAndPurgeHistoryBackground();
|
||||||
// appStorage.setItem(AppStorageKey.USER_ID, 'firman');
|
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
return (
|
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 { useEnterpriseModuleTranslationContext, EnterpriseFormPageProvider, FormPageType } from '@repo/ui/foundations';
|
||||||
import { useMemo } from 'react';
|
import { useMemo } from 'react';
|
||||||
import { fullPageModuleConfig } from '../../domain/constants';
|
import { fullPageModuleConfig } from '../../domain/constants';
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
import React from 'react';
|
|
||||||
import { DateUtils } from '@repo/utils';
|
import { DateUtils } from '@repo/utils';
|
||||||
|
|
||||||
export interface RenderDateProps {
|
export interface RenderDateProps {
|
||||||
|
|||||||
Reference in New Issue
Block a user