diff options
author | Fabio Berger <me@fabioberger.com> | 2018-10-18 21:06:12 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-10-18 21:06:12 +0800 |
commit | 0affc7682fa1a7484bb77cc460e9b9d10553980f (patch) | |
tree | 689a1628cb3d9fc423a263cdc6a6004ece96cb50 /packages/website/ts/pages/documentation/doc_page.tsx | |
parent | 1c68bdabaad07c2181c58aa5b0d550d4eb2be447 (diff) | |
download | dexon-0x-contracts-0affc7682fa1a7484bb77cc460e9b9d10553980f.tar.gz dexon-0x-contracts-0affc7682fa1a7484bb77cc460e9b9d10553980f.tar.zst dexon-0x-contracts-0affc7682fa1a7484bb77cc460e9b9d10553980f.zip |
chore: fix imports
Diffstat (limited to 'packages/website/ts/pages/documentation/doc_page.tsx')
-rw-r--r-- | packages/website/ts/pages/documentation/doc_page.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/website/ts/pages/documentation/doc_page.tsx b/packages/website/ts/pages/documentation/doc_page.tsx index 40c728c24..7157abfc9 100644 --- a/packages/website/ts/pages/documentation/doc_page.tsx +++ b/packages/website/ts/pages/documentation/doc_page.tsx @@ -5,8 +5,8 @@ import { GeneratedDocJson, SupportedDocJson, TypeDocUtils, -} from '@0xproject/react-docs'; -import { NestedSidebarMenu } from '@0xproject/react-shared'; +} from '@0x/react-docs'; +import { NestedSidebarMenu } from '@0x/react-shared'; import findVersions = require('find-versions'); import * as _ from 'lodash'; import CircularProgress from 'material-ui/CircularProgress'; @@ -181,7 +181,7 @@ export class DocPage extends React.Component<DocPageProps, DocPageState> { let tagPrefix = pkg; const packagesWithNamespace = ['connect']; if (_.includes(packagesWithNamespace, pkg)) { - tagPrefix = `@0xproject/${pkg}`; + tagPrefix = `@0x/${pkg}`; } // HACK: The following three lines exist for backward compatibility reasons // Before exporting types from other packages as part of the 0x.js interface, |