1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Restructure legacy route code

This commit is contained in:
Bill Thornton 2022-11-01 16:44:51 -04:00
parent 2094a7a8c2
commit c4a58c7133
3 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ import React from 'react';
import { Navigate, Route, Routes } from 'react-router-dom';
import ConnectionRequired from '../components/ConnectionRequired';
import { LEGACY_USER_ROUTES, toViewManagerPageRoute } from './legacy';
import { LEGACY_USER_ROUTES, toViewManagerPageRoute } from './legacyRoutes';
import UserNew from './user/usernew';
import Search from './search';
import UserEdit from './user/useredit';

View file

@ -20,4 +20,4 @@ export function toViewManagerPageRoute(route: LegacyRoute) {
);
}
export * from './userRoutes';
export * from './user';