We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 031bbea commit d04b9d9Copy full SHA for d04b9d9
1 file changed
src/app/components/RuntimeEvents/RuntimeEventDetails.tsx
@@ -281,7 +281,8 @@ const RuntimeEventDetailsInner: FC<{
281
{event.body.topics
282
/* @ts-expect-error -- Event body is missing types */
283
.map((base64Topic, index) => {
284
- return `${index}: 0x${Buffer.from(base64Topic, 'base64').toString('hex')}`
+ // \xa0 is
285
+ return `${index}:\xa00x${Buffer.from(base64Topic, 'base64').toString('hex')}`
286
})
287
.join('\n')}
288
</span>
0 commit comments