fix: wallet build failures - BigInt literal and icons

- Replace 0n BigInt literal with BigInt(0) for Safari 13 compatibility
- Generate proper app icons for Windows (.ico) and macOS (.icns)
This commit is contained in:
Gulshan Yadav 2026-02-02 02:42:59 +05:30
parent 33fd1a015f
commit c58081b8c9
7 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 B

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 B

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 B

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 0 B

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 B

After

Width:  |  Height:  |  Size: 54 KiB

View file

@ -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() {