File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/module/src/MultiContentCard Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ const MultiContentCard: React.FunctionComponent<MultiContentCardProps> = ({
7777 const renderCards = ( cards : ( React . ReactElement | MutliContentCardProps ) [ ] , withDividers ?: boolean ) => (
7878 < Flex alignSelf = { { default : 'alignSelfStretch' } } alignItems = { { default : 'alignItemsStretch' } } >
7979 { cards . map ( ( card , index ) => (
80- < div key = { `card- ${ index } ` } >
80+ < >
8181 { index > 0 && isCardWithProps ( card ) && card . dividerVariant === MultiContentCardDividerVariant . left && (
8282 < Divider
8383 orientation = { { md : 'vertical' } }
@@ -93,7 +93,7 @@ const MultiContentCard: React.FunctionComponent<MultiContentCardProps> = ({
9393 inset = { { default : 'inset3xl' } }
9494 />
9595 ) }
96- </ div >
96+ </ >
9797 ) ) }
9898 </ Flex >
9999 ) ;
You can’t perform that action at this time.
0 commit comments