diff --git a/client/a8c-for-agencies/sections/marketplace/common/hosting-additional-features-section/index.tsx b/client/a8c-for-agencies/sections/marketplace/common/hosting-additional-features-section/index.tsx index ec5bec336d0a5..2314d63caed37 100644 --- a/client/a8c-for-agencies/sections/marketplace/common/hosting-additional-features-section/index.tsx +++ b/client/a8c-for-agencies/sections/marketplace/common/hosting-additional-features-section/index.tsx @@ -1,13 +1,15 @@ import { Icon, check } from '@wordpress/icons'; import clsx from 'clsx'; +import { TranslateResult } from 'i18n-calypso'; import PageSection, { PageSectionProps } from 'calypso/a8c-for-agencies/components/page-section'; import './style.scss'; type Props = Omit< PageSectionProps, 'children' > & { - items: string[]; - fiveRows?: boolean; + items: TranslateResult[]; threeRows?: boolean; + fourRows?: boolean; + fiveRows?: boolean; }; export default function HostingAdditionalFeaturesSection( { @@ -17,8 +19,9 @@ export default function HostingAdditionalFeaturesSection( { background, description, items, - fiveRows, threeRows, + fourRows, + fiveRows, }: Props ) { return (