summaryrefslogtreecommitdiff
path: root/components/login
diff options
context:
space:
mode:
authorpolwex <polwex@sortug.com>2025-07-16 14:54:44 +0700
committerpolwex <polwex@sortug.com>2025-07-16 14:54:44 +0700
commitaadfe206f3233032d8742a17c1f21d4750946a41 (patch)
treea63a95381ff99af1226ef096ce94cc32d8153ca5 /components/login
parent1c81a70b0349a7f7577d0124b4b67ab5ea01e68d (diff)
aaaarggh!!!
Diffstat (limited to 'components/login')
-rw-r--r--components/login/ShipCredsForm.tsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/components/login/ShipCredsForm.tsx b/components/login/ShipCredsForm.tsx
index d84a474..7853162 100644
--- a/components/login/ShipCredsForm.tsx
+++ b/components/login/ShipCredsForm.tsx
@@ -1,4 +1,5 @@
"use client";
+
import { ColorScheme, lightColors } from "@/constants";
import {
StyleSheet,
@@ -15,7 +16,7 @@ import {
pkDecrypt,
pkEncrypt,
} from "@/lib/passkey";
-import toast, { Toaster } from "react-hot-toast";
+import toast from "react-hot-toast";
import { makeWalletFromP } from "@/lib/urbit/wallet";
import { hex2buf } from "@/lib/utils/bit";
@@ -113,11 +114,9 @@ export function ShipForm() {
style={{ marginTop: 0 }}
isLoading={isLoading}
/>
-
<TouchableOpacity style={styles.footer}>
<Text style={styles.footerText}>No Urbit ID? Get yours.</Text>
</TouchableOpacity>
- <Toaster position={"top-center"} />
</View>
);
}