Skip to content

Commit 4c04882

Browse files
authored
fix: pending limit order mismatch (#2869)
1 parent 2afd27d commit 4c04882

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/kit/src/views/Swap/Main/LimitOrder/PendingContent.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,20 +205,20 @@ const FullView: FC<{ order: LimitOrderTransactionDetails }> = ({ order }) => {
205205
<TokenImage
206206
size="8"
207207
borderRadius="full"
208-
token={tokenIn}
208+
token={tokenOut}
209209
bgColor="surface-neutral-default"
210210
/>
211211
</Box>
212212
<Box flex={1} flexDirection="row" alignItems="center">
213213
<Typography.Body2Strong overflow="clip">
214-
{tokenInValueString} {tokenIn.symbol.toUpperCase()}
214+
{tokenOutValueString} {tokenOut.symbol.toUpperCase()}
215215
</Typography.Body2Strong>
216216
</Box>
217217
</Box>
218218
<Box w="20%" flexDirection="row" alignItems="center">
219219
<Box flex={1} flexDirection="row" alignItems="center">
220220
<Typography.Body2Strong overflow="clip">
221-
{tokenOutValueString} {tokenOut.symbol.toUpperCase()}
221+
{tokenInValueString} {tokenIn.symbol.toUpperCase()}
222222
</Typography.Body2Strong>
223223
</Box>
224224
</Box>

0 commit comments

Comments
 (0)