Skip to content

Commit

Permalink
fix(app): sender/receiver justification
Browse files Browse the repository at this point in the history
  • Loading branch information
cor committed Jan 24, 2025
1 parent 363ad8b commit bb2350b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/lib/components/transfer-details.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@ let processedTransfers = derived(
<!-- typescript is stupid here, as source_chain_id and destination_chain_id have already established not to be null. !-->
<PacketPath packet={transfer} {chains} />
</section>
<section class="flex flex-col lg:flex-row gap-8">
<section class="flex flex-col lg:flex-row justify-between gap-8">
<div class="flex-col text-muted-foreground">
<DetailsHeading>Sender</DetailsHeading>
<Address showRaw address={transfer.sender_normalized} {chains} chainId={transfer.source_chain_id} />
</div>
<div class="flex-1 lg:text-right flex-col text-muted-foreground">
<div class="lg:text-right flex-col text-muted-foreground">
<DetailsHeading>Receiver</DetailsHeading>
<Address showRaw address={transfer.receiver_normalized} {chains} chainId={transfer.destination_chain_id} />
</div>
Expand Down

0 comments on commit bb2350b

Please sign in to comment.