diff --git a/lib/components/atoms/BaseBanner/index.tsx b/lib/components/atoms/BaseBanner/index.tsx index 1215839..66369d4 100644 --- a/lib/components/atoms/BaseBanner/index.tsx +++ b/lib/components/atoms/BaseBanner/index.tsx @@ -4,7 +4,6 @@ import { MAX_WIDTH } from '../../../constants'; import { useWllSdk } from '../../../context/WllSdkContext'; import { useHandleTilePress } from '../../../hooks/useHandleTilePress'; import { BannerTileConfig, Tile } from '../../../types/tile'; -import { Row } from '../Primatives'; const BannerContext = createContext(null); @@ -62,9 +61,7 @@ const BaseBanner: React.FC = ({ `${title}${!hasCTA && ctaLink ? ' - Click to open' : ''}` } > - - {children} - + {children} );