diff --git a/apps/dashboard/.env b/apps/dashboard/.env deleted file mode 100644 index 2c69c8888d..0000000000 --- a/apps/dashboard/.env +++ /dev/null @@ -1,2 +0,0 @@ -NEXTAUTH_URL=http://localhost:3001 -NEXTAUTH_SECRET="thisismysecret" diff --git a/apps/dashboard/components/price-container/price-container.tsx b/apps/dashboard/components/price-container/price-container.tsx index 2ccb9ebc48..026007ce94 100644 --- a/apps/dashboard/components/price-container/price-container.tsx +++ b/apps/dashboard/components/price-container/price-container.tsx @@ -23,7 +23,6 @@ const formatBalance = ( if (walletCurrency === "BTC") { const btcBalance = balance / 100000000 if (btcBalance < 0.00001) { - // Set your own threshold return [balance, "sats"] } else { return [btcBalance, "BTC"]