diff options
| -rw-r--r-- | packages/react-docs/src/components/documentation.tsx | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/packages/react-docs/src/components/documentation.tsx b/packages/react-docs/src/components/documentation.tsx index 3cd14923c..55aa1587e 100644 --- a/packages/react-docs/src/components/documentation.tsx +++ b/packages/react-docs/src/components/documentation.tsx @@ -10,6 +10,7 @@ import {      utils as sharedUtils,  } from '@0xproject/react-shared';  import { +    CustomType,      DocAgnosticFormat,      Event,      ExternalExportToLink, @@ -218,11 +219,11 @@ export class Documentation extends React.Component<DocumentationProps, Documenta              _.isEmpty(docSection.events);          const sortedTypes = _.sortBy(docSection.types, 'name'); -        const typeDefs = _.map(sortedTypes, customType => { +        const typeDefs = _.map(sortedTypes, (customType: CustomType, i: number) => {              return (                  <TypeDefinition                      sectionName={sectionName} -                    key={`type-${customType.name}`} +                    key={`type-${customType.name}-${i}`}                      customType={customType}                      docsInfo={this.props.docsInfo}                      typeDefinitionByName={typeDefinitionByName} | 
