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)
|
Before Width: | Height: | Size: 130 B After Width: | Height: | Size: 8.8 KiB |
|
Before Width: | Height: | Size: 130 B After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 130 B After Width: | Height: | Size: 2 KiB |
|
Before Width: | Height: | Size: 0 B After Width: | Height: | Size: 142 KiB |
|
Before Width: | Height: | Size: 130 B After Width: | Height: | Size: 54 KiB |
|
|
@ -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() {
|
||||
|
|
|
|||