Skip to content

Commit 6aaeda3

Browse files
committed
Move "SEK Public Key" next to secrets
1 parent aa67213 commit 6aaeda3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/pages/RoflAppDetailsPage/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,6 @@ export const RoflAppDetailsView: FC<{
129129
<DetailsRow title={t('rofl.enclaveId')}>
130130
<Enclaves policy={app.policy} />
131131
</DetailsRow>
132-
<DetailsRow title={t('rofl.sekPublicKey')}>
133-
<span className="font-medium">{app.sek}</span> <CopyToClipboard value={app.sek} />
134-
</DetailsRow>
135132
<AdminAccountRow
136133
address={app.admin_eth ?? app.admin}
137134
scope={{ network: app.network, layer: app.layer }}
@@ -151,6 +148,9 @@ export const RoflAppDetailsView: FC<{
151148
/>
152149
</div>
153150
</DetailsRow>
151+
<DetailsRow title={t('rofl.sekPublicKey')}>
152+
<span className="font-medium">{app.sek}</span> <CopyToClipboard value={app.sek} />
153+
</DetailsRow>
154154
<DetailsRow
155155
title={
156156
<div className="flex items-center gap-4">

0 commit comments

Comments
 (0)