Skip to content

Commit 83fb23f

Browse files
committed
Use the PartyId component in the registration page
1 parent 2385654 commit 83fb23f

File tree

1 file changed

+6
-1
lines changed
  • mithril-explorer/src/app/registrations

1 file changed

+6
-1
lines changed

mithril-explorer/src/app/registrations/page.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import RawJsonButton from "../../components/RawJsonButton";
1414
import VerifiedBadge from "../../components/VerifiedBadge";
1515
import PoolTicker from "../../components/PoolTicker";
1616
import {updatePoolsForAggregator} from "../../store/poolsSlice";
17+
import PartyId from "../../components/PartyId";
1718

1819
Chart.register(
1920
ArcElement,
@@ -258,7 +259,11 @@ export default function Registrations() {
258259
{registrations.map((signer, index) =>
259260
<tr key={signer.party_id}>
260261
<td>{index}</td>
261-
<td className="text-break"><VerifiedBadge tooltip="Verified Signer"/>{' '}{signer.party_id}</td>
262+
<td className="text-break">
263+
<VerifiedBadge tooltip="Verified Signer"/>
264+
{' '}
265+
<PartyId partyId={signer.party_id}/>
266+
</td>
262267
<td><PoolTicker aggregator={aggregator} partyId={signer.party_id}/></td>
263268
<td style={{textAlign: "end"}}><Stake lovelace={signer.stake}/></td>
264269
</tr>

0 commit comments

Comments
 (0)