Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions ui/ts/components/SecurityPoolWorkflowSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -592,9 +592,6 @@ export function SecurityPoolWorkflowSection({
priceValidUntilTimestamp={currentPoolOracleManagerDetails?.priceValidUntilTimestamp}
/>
</MetricField>
<MetricField label='Manager'>
<AddressValue address={loadedSelectedPool.managerAddress} />
</MetricField>
{loadedSelectedPool.systemState === 'operational' ? undefined : (
<>
<MetricField label='Fork Mode'>{loadedSelectedPool.forkOwnSecurityPool ? 'Own escalation fork' : 'Parent / Zoltar fork'}</MetricField>
Expand Down
3 changes: 0 additions & 3 deletions ui/ts/components/SecurityPoolsOverviewSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,6 @@ export function SecurityPoolsOverviewSection({
totalRepDeposit={pool.totalRepDeposit}
totalSecurityBondAllowance={pool.totalSecurityBondAllowance}
/>
<MetricField label='Manager'>
<AddressValue address={pool.managerAddress} />
</MetricField>
{pool.truthAuctionAddress === zeroAddress ? undefined : (
<MetricField label='Truth Auction'>
<AddressValue address={pool.truthAuctionAddress} />
Expand Down
1 change: 1 addition & 0 deletions ui/ts/tests/securityPoolWorkflowSection.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ describe('SecurityPoolWorkflowSection', () => {
expect(documentQueries.queryByText(/^Blocked:/)).toBeNull()
expect(documentQueries.queryByText('Oracle Status')).toBeNull()
expect(documentQueries.queryByText('After market end')).toBeNull()
expect(documentQueries.queryByText('Manager')).toBeNull()
expect(documentQueries.queryByText('Truth Auction')).toBeNull()
expect(documentQueries.getByText('Security Multiplier')).not.toBeNull()
const directoryButton = documentQueries.getByRole('tab', { name: 'Directory' })
Expand Down
1 change: 1 addition & 0 deletions ui/ts/tests/securityPoolsSection.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,7 @@ void describe('SecurityPoolsSection', () => {
cleanupRenderedComponent = renderedComponent.cleanup

const metricLabels = Array.from(document.body.querySelectorAll('.metric-label')).map(element => element.textContent?.trim() ?? '')
expect(metricLabels.includes('Manager')).toBe(false)
expect(metricLabels.includes('Truth Auction')).toBe(false)
})

Expand Down
Loading