mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-18 12:11:35 +00:00
Rebuild packagae.json
This commit is contained in:
parent
c9f6a29861
commit
020ea1b63f
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 originalPrice =
|
||||
(limits[order.currency].price ?? 0) * (1 + parseFloat(order.premium) / 100);
|
||||
(limits[order.currency]?.price ?? 0) * (1 + parseFloat(order.premium) / 100);
|
||||
const currencyPrice =
|
||||
(limits[currencyCode].price ?? 0) * (1 + parseFloat(order.premium) / 100);
|
||||
(limits[currencyCode]?.price ?? 0) * (1 + parseFloat(order.premium) / 100);
|
||||
|
||||
const originalAmount =
|
||||
order.has_range && order.max_amount
|
||||
|
Loading…
Reference in New Issue
Block a user