Skip to content

Commit

Permalink
- updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Herrera committed Dec 10, 2024
1 parent 5e8323b commit 202c973
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 38 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { Col, Row } from 'react-bootstrap';

import EditButton from '@/components/common/EditButton';
import LoadingBackdrop from '@/components/common/LoadingBackdrop';
import { Section } from '@/components/common/Section/Section';
Expand Down Expand Up @@ -48,15 +46,7 @@ export const StakeHolderView: React.FunctionComponent<IStakeHolderViewProps> = (
<EditButton title="Edit Interests" onClick={onEdit} />
) : null}
</StyledEditWrapper>
<Section
isCollapsable
initiallyExpanded
header={
<Row>
<Col>Interests</Col>
</Row>
}
>
<Section isCollapsable initiallyExpanded header="Interests">
{groupedInterestProperties.length === 0 && legacyStakeHolders.length === 0 && (
<StyledNoData>
<p>There are no interest holders associated with this file.</p>
Expand Down Expand Up @@ -91,15 +81,7 @@ export const StakeHolderView: React.FunctionComponent<IStakeHolderViewProps> = (
</Section>
</StyledSummarySection>
<StyledSummarySection>
<Section
isCollapsable
initiallyExpanded
header={
<Row>
<Col>Non-interest Payees</Col>
</Row>
}
>
<Section isCollapsable initiallyExpanded header="Non-interest Payees">
{groupedNonInterestProperties.length === 0 && (
<StyledNoData>
<p>There are no non-interest payees associated with this file.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,7 @@ exports[`StakeHolderView component > renders as expected 1`] = `
<div
class="col"
>
<div
class="row"
>
<div
class="col"
>
Interests
</div>
</div>
Interests
</div>
<div
class="pl-8 d-flex align-items-end col-auto"
Expand Down Expand Up @@ -366,15 +358,7 @@ exports[`StakeHolderView component > renders as expected 1`] = `
<div
class="col"
>
<div
class="row"
>
<div
class="col"
>
Non-interest Payees
</div>
</div>
Non-interest Payees
</div>
<div
class="pl-8 d-flex align-items-end col-auto"
Expand Down

0 comments on commit 202c973

Please sign in to comment.