We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f338bd commit 51e312aCopy full SHA for 51e312a
1 file changed
ui/src/routes/schema.tsx
@@ -34,19 +34,7 @@ function Schema() {
34
);
35
}
36
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
47
- <ErdDiagram data={data} />
48
49
- );
+ return <ErdDiagram data={data} />;
50
51
52
function SchemaSkeleton() {
0 commit comments