Skip to content

Commit

Permalink
Added custom api generator component on top of the codetabscomponent
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaseduoli committed Aug 29, 2024
1 parent 7d4ce00 commit 8b82f39
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export function CustomAPIGenerator() {
return <></>;
}
2 changes: 2 additions & 0 deletions src/frontend/src/modals/apiModal/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { CustomAPIGenerator } from "@/customization/components/custom-api-generator";
import { useCustomAPICode } from "@/customization/hooks/use-custom-api-code";
import useAuthStore from "@/stores/authStore";
import "ace-builds/src-noconflict/ext-language_tools";
Expand Down Expand Up @@ -53,6 +54,7 @@ export default function ApiModal({
/>
</BaseModal.Header>
<BaseModal.Content overflowHidden>
<CustomAPIGenerator />
<CodeTabsComponent
open={open}
tabs={tabs!}
Expand Down

0 comments on commit 8b82f39

Please sign in to comment.