diff options
Diffstat (limited to 'components')
-rw-r--r-- | components/login/ShipCredsForm.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/login/ShipCredsForm.tsx b/components/login/ShipCredsForm.tsx index 7853162..eebeeab 100644 --- a/components/login/ShipCredsForm.tsx +++ b/components/login/ShipCredsForm.tsx @@ -1,5 +1,5 @@ "use client"; - +import "core-js/actual/typed-array"; import { ColorScheme, lightColors } from "@/constants"; import { StyleSheet, @@ -36,6 +36,7 @@ export function ShipForm() { toast(`bytes: ${byteLength}`); const bufer = hex2buf(privkey); toast(`buffer size: ${bufer.byteLength}`); + console.log(Uint8Array); const ba = Uint8Array.fromHex(clean); toast(`uintarray byte length: ${ba.byteLength}`); console.log({ |