diff --git a/apps/condo/domains/miniapp/components/AppIndex/BillingAppPage.tsx b/apps/condo/domains/miniapp/components/AppIndex/BillingAppPage.tsx index 497ffda6624..3dfd388bde9 100644 --- a/apps/condo/domains/miniapp/components/AppIndex/BillingAppPage.tsx +++ b/apps/condo/domains/miniapp/components/AppIndex/BillingAppPage.tsx @@ -14,9 +14,10 @@ import { IFrame } from '@condo/domains/miniapp/components/IFrame' type BillingAppPageProps = { id: string + children?: React.ReactNode } -export const BillingAppPage: React.FC = ({ id }) => { +export const BillingAppPage: React.FC = ({ id, children }) => { const intl = useIntl() const FallbackPageTitle = intl.formatMessage({ id: 'global.section.miniapps' }) @@ -47,6 +48,7 @@ export const BillingAppPage: React.FC = ({ id }) => { {appName || FallbackPageTitle} + {children} {appName || FallbackPageTitle}} spaced/> {appUrl && ( diff --git a/apps/condo/pages/service-provider-profile.tsx b/apps/condo/pages/service-provider-profile.tsx index a368e1729d4..4c178898077 100644 --- a/apps/condo/pages/service-provider-profile.tsx +++ b/apps/condo/pages/service-provider-profile.tsx @@ -29,10 +29,9 @@ const ServiceProviderProfilePage: PageType = () => { if (sppConfig && 'BillingIntegrationId' in sppConfig && isSPPOrg) { return ( - <> + {GlobalHints} - - + ) }