Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
salmad3 committed Sep 30, 2024
1 parent 5be083a commit a11d1bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pages/build/nft-contract-tutorial.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Callout, Tabs } from 'nextra/components';
import { Nfts } from '../../../components';
import { Nfts } from '../../components';

# NFT Contract Tutorial

Expand Down
6 changes: 3 additions & 3 deletions pages/reference/api/[...route].mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { APIEndpointRoute } from '../../../../../components';
import { PageTitle } from '../../../../../components/APIEndpointRoute/APIEndpointRoute';
import { APIEndpointRoute } from '../../../components';
import { PageTitle } from '../../../components/APIEndpointRoute/APIEndpointRoute';

<PageTitle />
<APIEndpointRoute />

export { getStaticPaths, getStaticProps } from '../../../../../components/APIEndpointRoute/APIEndpointRoute';
export { getStaticPaths, getStaticProps } from '../../../components/APIEndpointRoute/APIEndpointRoute';

0 comments on commit a11d1bb

Please sign in to comment.