remove usermanagment from the backoffice

This commit is contained in:
mengstabketemaw
2026-06-13 11:47:39 +03:00
parent de6d5a01cb
commit bd6fd97111
6 changed files with 18 additions and 70 deletions

View File

@@ -1,17 +1,7 @@
import { useEffect } from 'react';
import { configureIam } from '@tria-plc/iamui-common';
import { AppProviders } from './providers/AppProviders';
import { AppRouter } from './router';
const BASE_API_URL =
(import.meta as { env?: Record<string, string> }).env?.['VITE_BASE_API_URL'] ??
'http://localhost:3001/api';
export function App() {
useEffect(() => {
configureIam({ apiUrl: BASE_API_URL });
}, []);
return (
<AppProviders>
<AppRouter />