feat: introduce admin apps page (#1296)

* feat: introduce admin apps page

* feat: add access restriction and fix incorrectly placed key prop
This commit is contained in:
kattoczko
2023-10-05 09:55:00 +01:00
committed by GitHub
parent 82c1aadfa9
commit 584b9323ec
8 changed files with 102 additions and 7 deletions

View File

@@ -97,7 +97,9 @@ export default function Applications(): React.ReactElement {
)}
{!loading &&
apps?.map((app: IApp) => <AppRow key={app.name} application={app} />)}
apps?.map((app: IApp) => (
<AppRow key={app.name} application={app} url={URLS.APP(app.key)} />
))}
<Routes>
<Route