Skip to content

Commit

Permalink
Remove subpackage description from the ui (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
kafkas authored Aug 21, 2023
1 parent ed47633 commit fce3282
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions packages/ui/app/src/api-page/subpackages/ApiSubpackage.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import * as FernRegistryApiRead from "@fern-fern/registry-browser/api/resources/api/resources/v1/resources/read";
import { useApiDefinitionContext } from "../../api-context/useApiDefinitionContext";
import { ApiPackageContents } from "../ApiPackageContents";
import { Markdown } from "../markdown/Markdown";
import { ApiPageMargins } from "../page-margins/ApiPageMargins";
import { useApiPageCenterElement } from "../useApiPageCenterElement";

Expand All @@ -24,12 +23,6 @@ export const ApiSubpackage: React.FC<ApiSubpackage.Props> = ({ subpackageId, slu
<>
<ApiPageMargins>
<div ref={setTargetRef} />
{subpackage.description != null && (
<div className="flex flex-col items-start space-y-5 pt-10 md:flex-row md:space-x-[5vw] md:space-y-0">
<Markdown className="flex-1">{subpackage.description}</Markdown>
<div className="flex-1" />
</div>
)}
</ApiPageMargins>
<ApiPackageContents
key={subpackageId}
Expand Down

0 comments on commit fce3282

Please sign in to comment.