diff --git a/apps/desktop-wallet/src-tauri/icons/128x128.png b/apps/desktop-wallet/src-tauri/icons/128x128.png index 883e4ad..f746ea5 100644 Binary files a/apps/desktop-wallet/src-tauri/icons/128x128.png and b/apps/desktop-wallet/src-tauri/icons/128x128.png differ diff --git a/apps/desktop-wallet/src-tauri/icons/128x128@2x.png b/apps/desktop-wallet/src-tauri/icons/128x128@2x.png index 883e4ad..6d158b9 100644 Binary files a/apps/desktop-wallet/src-tauri/icons/128x128@2x.png and b/apps/desktop-wallet/src-tauri/icons/128x128@2x.png differ diff --git a/apps/desktop-wallet/src-tauri/icons/32x32.png b/apps/desktop-wallet/src-tauri/icons/32x32.png index 883e4ad..9bb2b05 100644 Binary files a/apps/desktop-wallet/src-tauri/icons/32x32.png and b/apps/desktop-wallet/src-tauri/icons/32x32.png differ diff --git a/apps/desktop-wallet/src-tauri/icons/icon.icns b/apps/desktop-wallet/src-tauri/icons/icon.icns index e69de29..2d0c4b7 100644 Binary files a/apps/desktop-wallet/src-tauri/icons/icon.icns and b/apps/desktop-wallet/src-tauri/icons/icon.icns differ diff --git a/apps/desktop-wallet/src-tauri/icons/icon.ico b/apps/desktop-wallet/src-tauri/icons/icon.ico index e69de29..82c1090 100644 Binary files a/apps/desktop-wallet/src-tauri/icons/icon.ico and b/apps/desktop-wallet/src-tauri/icons/icon.ico differ diff --git a/apps/desktop-wallet/src-tauri/icons/icon.png b/apps/desktop-wallet/src-tauri/icons/icon.png index 883e4ad..df5e53b 100644 Binary files a/apps/desktop-wallet/src-tauri/icons/icon.png and b/apps/desktop-wallet/src-tauri/icons/icon.png differ diff --git a/apps/desktop-wallet/src/pages/Send.tsx b/apps/desktop-wallet/src/pages/Send.tsx index ed9dd65..86ae341 100644 --- a/apps/desktop-wallet/src/pages/Send.tsx +++ b/apps/desktop-wallet/src/pages/Send.tsx @@ -42,7 +42,7 @@ function parseSynToSompi(amountStr: string): bigint | null { const combined = integerPart + decimalPart; const result = BigInt(combined); - return result > 0n ? result : null; + return result > BigInt(0) ? result : null; } export default function Send() {