We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b53142f commit 7d531a0Copy full SHA for 7d531a0
src/App.tsx
@@ -327,8 +327,7 @@ rpc: ${chain?.rpcUrls?.default?.http?.[0] ?? chain?.rpcUrls?.public?.http?.[
327
)}
328
329
{selected && account && lastTxHash && (
330
- <div style={{ display: "grid", gap: 12, marginTop: 16 }}>
331
- <div>
+ <>
332
<div className="section-title">Transaction Hash</div>
333
<pre className="box">{lastTxHash}</pre>
334
@@ -338,8 +337,7 @@ rpc: ${chain?.rpcUrls?.default?.http?.[0] ?? chain?.rpcUrls?.public?.http?.[
338
337
{lastTxReceipt ? renderJSON(lastTxReceipt) : "Waiting for receipt..."}
339
</pre>
340
</div>
341
- </div>
342
+ </>
343
344
345
{selected && account && pending && (
0 commit comments