mirror of
https://github.com/RoboSats/robosats.git
synced 2025-07-22 02:33:17 +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 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
|
||||
|
Reference in New Issue
Block a user