mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-01 04:19:26 +01:00
Fixed team settings not found.
This commit is contained in:
parent
2109d3225e
commit
7342d52c68
@ -168,11 +168,7 @@ const config = {
|
||||
destination: '/api/scripts/telemetry',
|
||||
},
|
||||
{
|
||||
source: '/teams/:teamId/settings/:path*',
|
||||
destination: '/teams/:teamId/settings/:path*',
|
||||
},
|
||||
{
|
||||
source: '/teams/:teamId/:path*',
|
||||
source: '/teams/:teamId/:path((?!settings).*)*',
|
||||
destination: '/:path*',
|
||||
},
|
||||
];
|
||||
|
@ -0,0 +1,5 @@
|
||||
import Page from 'app/(main)/settings/websites/[websiteId]/page';
|
||||
|
||||
export default function ({ params }) {
|
||||
return <Page params={params} />;
|
||||
}
|
Loading…
Reference in New Issue
Block a user