mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Fixed team settings not found.
This commit is contained in:
parent
2109d3225e
commit
7342d52c68
2 changed files with 6 additions and 5 deletions
|
|
@ -168,11 +168,7 @@ const config = {
|
||||||
destination: '/api/scripts/telemetry',
|
destination: '/api/scripts/telemetry',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
source: '/teams/:teamId/settings/:path*',
|
source: '/teams/:teamId/:path((?!settings).*)*',
|
||||||
destination: '/teams/:teamId/settings/:path*',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
source: '/teams/:teamId/:path*',
|
|
||||||
destination: '/:path*',
|
destination: '/:path*',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
import Page from 'app/(main)/settings/websites/[websiteId]/page';
|
||||||
|
|
||||||
|
export default function ({ params }) {
|
||||||
|
return <Page params={params} />;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue