mirror of
https://github.com/RoboSats/robosats.git
synced 2025-07-24 13:33:15 +00:00
Rebuild packagae.json
This commit is contained in:
314
frontend/package-lock.json
generated
314
frontend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -72,9 +72,9 @@ const DepthChart: React.FC<DepthChartProps> = ({
|
|||||||
const limits = federation.getCoordinator(order.coordinatorShortAlias).limits;
|
const limits = federation.getCoordinator(order.coordinatorShortAlias).limits;
|
||||||
|
|
||||||
const originalPrice =
|
const originalPrice =
|
||||||
(limits[order.currency].price ?? 0) * (1 + parseFloat(order.premium) / 100);
|
(limits[order.currency]?.price ?? 0) * (1 + parseFloat(order.premium) / 100);
|
||||||
const currencyPrice =
|
const currencyPrice =
|
||||||
(limits[currencyCode].price ?? 0) * (1 + parseFloat(order.premium) / 100);
|
(limits[currencyCode]?.price ?? 0) * (1 + parseFloat(order.premium) / 100);
|
||||||
|
|
||||||
const originalAmount =
|
const originalAmount =
|
||||||
order.has_range && order.max_amount
|
order.has_range && order.max_amount
|
||||||
|
Reference in New Issue
Block a user