We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f37feb4 + 28fd6c4 commit 5c95b89Copy full SHA for 5c95b89
.changelog/2059.bugfix.md
@@ -0,0 +1 @@
1
+Fix machine ID serialization
src/app/components/RuntimeEvents/RuntimeEventDetails.tsx
@@ -550,7 +550,7 @@ const RuntimeEventDetailsInner: FC<{
550
</dd>
551
<dt>{t('roflmarket.machineId')}</dt>
552
{/* oasis-sdk serializes roflmarket provider machines id as an array */}
553
- <dd>{JSON.stringify(event.body.id)}</dd>
+ <dd>0x{Buffer.from(event.body.id).toString('hex')}</dd>
554
</StyledDescriptionList>
555
</div>
556
)
0 commit comments