diff options
Diffstat (limited to 'components/login')
-rw-r--r-- | components/login/ShipCredsForm.tsx | 5 |
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> ); } |