Skip to content

Commit

Permalink
feat(condo): DOMA-9269 added choose custom columns and ui fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
abshnko committed Aug 19, 2024
1 parent 94e86d7 commit 7546c0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ import { useBillingAndAcquiringContexts } from './ContextProvider'
import { EmptyContent } from './EmptyContent'
import { PaymentsTab } from './PaymentsTab'

const IFRAME_STYLES = { height: '100%' }

type MainContentProps = {
uploadComponent?: React.ReactElement
}
Expand Down Expand Up @@ -61,7 +59,7 @@ export const MainContent: React.FC<MainContentProps> = ({
result.push({
label: extensionPageTitle,
key: EXTENSION_TAB_KEY,
children: <IFrame src={appUrl} reloadScope='organization' withPrefetch withLoader withResize scrolling='yes' style={IFRAME_STYLES}/>,
children: <IFrame src={appUrl} reloadScope='organization' withPrefetch withLoader withResize scrolling='yes' />,
})
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ export const BillingPageContent: React.FC = () => {
</Head>
<StyledPageWrapper>
<PageHeader title={<Typography.Title>{PageTitle}</Typography.Title>} extra={<Tag bgColor={tagBg} textColor={colors.white}>{tagMessage}</Tag>}/>
<TablePageContent>
<MainContent />
</TablePageContent>
<MainContent />
</StyledPageWrapper>
</>
)
Expand Down

0 comments on commit 7546c0f

Please sign in to comment.