+4
-1
src/routes/jetstream.lazy.tsx
+4
-1
src/routes/jetstream.lazy.tsx
···
398
398
</div>
399
399
<div className="w-full max-w-2xl overflow-x-auto lg:px-4">
400
400
{jet.records.map((r) => (
401
-
<div className="max-w-min text-wrap mb-8">
401
+
<div
402
+
key={r.time_us + r.commit.rev}
403
+
className="max-w-min text-wrap mb-8"
404
+
>
402
405
<RenderJson pds="" did={r.did} data={r} />
403
406
</div>
404
407
))}