-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f00caec
commit 85130c6
Showing
7 changed files
with
31 additions
and
101 deletions.
There are no files selected for viewing
68 changes: 0 additions & 68 deletions
68
services/user/AppRegistry/ui/src/components/app-card-list.tsx
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export * from "./home"; | ||
export * from "./about"; | ||
export * from "./register"; | ||
export * from "./manage-metadata"; |
10 changes: 10 additions & 0 deletions
10
services/user/AppRegistry/ui/src/routes/manage-metadata.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { AppMetadataForm } from "@components/app-metadata-form"; | ||
|
||
export function ManageAppMetadataPage() { | ||
return ( | ||
<div className="container mx-auto py-8"> | ||
<h1 className="mb-6 text-2xl font-bold">Manage App Metadata</h1> | ||
<AppMetadataForm /> | ||
</div> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.