Skip to content

Commit

Permalink
fix: schema route changes
Browse files Browse the repository at this point in the history
Signed-off-by: bhavanakarwade <[email protected]>
  • Loading branch information
bhavanakarwade committed Jan 20, 2025
1 parent d650702 commit dbb6db1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/config/pathRoutes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const pathRoutes = {
createSchema: '/organizations/schemas/create',
deleteOrganization:'/organizations/delete-organizations',

viewSchema: '/organizations/schemas/view-schema',
viewSchema: '/organizations/schemas',
Issuance: {
issue: '/organizations/credentials/issue',
schema: '/organizations/credentials/issue/schemas',
Expand Down
9 changes: 9 additions & 0 deletions src/pages/organizations/schemas/[schemaId].astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
import LayoutSidebar from "../../../app/LayoutSidebar.astro";
import ViewSchemas from "../../../components/Resources/Schema/ViewSchema";
const schemaId = Astro.params.schemaId;
---
<LayoutSidebar>
<ViewSchemas schemaId={schemaId || ""} client:load/>
</LayoutSidebar>
9 changes: 0 additions & 9 deletions src/pages/organizations/schemas/view-schema/[schemaId].astro

This file was deleted.

0 comments on commit dbb6db1

Please sign in to comment.