We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcaed94 commit fe3cd58Copy full SHA for fe3cd58
1 file changed
app/components/UI/Ramp/Deposit/components/DepositOrderContent/DepositOrderContent.tsx
@@ -94,7 +94,7 @@ const DepositOrderContent: React.FC<DepositOrderContentProps> = ({ order }) => {
94
}
95
}, [order?.data]);
96
97
- const shortOrderId = providerOrderId.slice(-6);
+ const shortOrderId = providerOrderId?.slice(-6) ?? order.id.slice(-6);
98
const totalAmount =
99
order.amount && order.fee
100
? (
0 commit comments