Skip to content

Commit

Permalink
Merge pull request #1314 from rainlanguage/2025-02-16-order-page-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hardyjosh authored Feb 16, 2025
2 parents 7d301c7 + 6a0e240 commit 9b3d64e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<div class="mb-4 flex items-center justify-between">
<h2 class="text-lg font-semibold">Order Quotes</h2>
<div class="flex items-center gap-x-1">
{#if $orderQuoteQuery.data && isHex($orderQuoteQuery.data[0].blockNumber)}
{#if $orderQuoteQuery.data && $orderQuoteQuery.data.length > 0 && isHex($orderQuoteQuery.data[0].blockNumber)}
<EditableSpan
displayValue={blockNumber?.toString() ||
hexToNumber($orderQuoteQuery.data[0].blockNumber).toString()}
Expand Down

0 comments on commit 9b3d64e

Please sign in to comment.