Your music, beautifully tracked. All yours. (coming soon) teal.fm
teal-fm atproto

be able to press enter when logging in

authored by mmatt.net and committed by

Natalie B. 2249b6b5 f9860133

+9 -10
+9 -10
apps/amethyst/app/auth/login.tsx
··· 1 - import { Link, Stack, router } from "expo-router"; 2 - import { AlertCircle, AtSign, Check, ChevronRight } from "lucide-react-native"; 3 import React, { useState } from "react"; 4 - import { Platform, View } from "react-native"; 5 import { SafeAreaView } from "react-native-safe-area-context"; 6 - import { Button } from "../components/ui/button"; 7 - import { Input } from "../components/ui/input"; 8 - import { Text } from "../components/ui/text"; 9 - import { Icon } from "../lib/icons/iconWithClassName"; 10 - import { cn } from "../lib/utils"; 11 - 12 import { openAuthSessionAsync } from "expo-web-browser"; 13 - import { useStore } from "../stores/mainStore"; 14 15 const LoginScreen = () => { 16 const [handle, setHandle] = useState("");
··· 1 import React, { useState } from "react"; 2 + import { View, Platform } from "react-native"; 3 import { SafeAreaView } from "react-native-safe-area-context"; 4 + import { Text } from "@/components/ui/text"; 5 + import { Button } from "@/components/ui/button"; 6 + import { Icon } from "@/lib/icons/iconWithClassName"; 7 + import { Check, ChevronRight, AtSign, AlertCircle } from "lucide-react-native"; 8 + import { Input } from "@/components/ui/input"; 9 + import { cn } from "@/lib/utils"; 10 + import { Link, Stack, router } from "expo-router"; 11 + import { useStore } from "@/stores/mainStore"; 12 import { openAuthSessionAsync } from "expo-web-browser"; 13 14 const LoginScreen = () => { 15 const [handle, setHandle] = useState("");