* feat(gacha): register and login integration * fix: navbar and gacha landing page - display fullname when user authenticated - fix styling and responsive * fix: minor fix UI
16 lines
361 B
TypeScript
16 lines
361 B
TypeScript
// import { SessionToken, SessionUser } from '@imphnen-frontend-service/utils';
|
|
import { LoaderFunctionArgs } from 'react-router';
|
|
|
|
// const mappingPublicRoutes = ['/'];
|
|
|
|
// const mappingRoutePermissions = [
|
|
// {
|
|
// path: '/',
|
|
// permissions: [],
|
|
// },
|
|
// ];
|
|
|
|
export const middleware = async ({ request }: LoaderFunctionArgs) => {
|
|
return null;
|
|
};
|