Skip to content

Commit 51e312a

Browse files
committed
chore: remove title on the schema page
1 parent 2f338bd commit 51e312a

1 file changed

Lines changed: 1 addition & 13 deletions

File tree

ui/src/routes/schema.tsx

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,7 @@ function Schema() {
3434
);
3535
}
3636

37-
return (
38-
<div className="flex flex-col gap-4">
39-
<div className="flex items-center justify-between">
40-
<h2 className="text-foreground scroll-m-20 text-2xl font-semibold tracking-tight">
41-
Entity Relationship Diagram
42-
</h2>
43-
<div className="text-sm text-muted-foreground">
44-
{data.tables.length} tables, {data.relationships.length} relationships
45-
</div>
46-
</div>
47-
<ErdDiagram data={data} />
48-
</div>
49-
);
37+
return <ErdDiagram data={data} />;
5038
}
5139

5240
function SchemaSkeleton() {

0 commit comments

Comments
 (0)