diff --git a/nextjs/src/features/schemas/components/SchemaCard.tsx b/nextjs/src/features/schemas/components/SchemaCard.tsx
index 9a0212e0e..4b8f3667c 100644
--- a/nextjs/src/features/schemas/components/SchemaCard.tsx
+++ b/nextjs/src/features/schemas/components/SchemaCard.tsx
@@ -108,7 +108,9 @@ const SchemaCard = (props: ISchemaCardProps): React.JSX.Element => {
}
if (!props.w3cSchema && !hasNestedAttributes && props.schemaId) {
- router.push(`/organizations/schemas/${props.schemaId}`)
+ router.push(
+ `/organizations/schemas/${props.schemaId}?alias=${props.schemaName}`,
+ )
}
if (props.onClickCallback) {