Skip to content

Commit 3f66a7a

Browse files
authored
fix(explorer): do not add tx row when there's no tx hash (#6499)
1 parent 5741c7f commit 3f66a7a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

apps/explorer/src/components/orders/DetailsTable/BaseDetailsTable.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,8 @@ export function BaseDetailsTable({
155155
</tr>
156156
{(!partiallyFillable || txHash) && areTradesLoading ? (
157157
<Spinner />
158-
) : txHash ? (
159-
<TxHashItem chainId={chainId} txHash={txHash} onCopy={onCopy} isLoading={areTradesLoading} />
160158
) : (
161-
'-'
159+
<TxHashItem chainId={chainId} txHash={txHash} onCopy={onCopy} isLoading={areTradesLoading} />
162160
)}
163161
<tr>
164162
<td>

0 commit comments

Comments
 (0)