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. 6f7ed080 2249b6b5

+10 -9
+10 -9
apps/amethyst/app/auth/login.tsx
··· 1 + import { Link, Stack, router } from "expo-router"; 2 + import { AlertCircle, AtSign, Check, ChevronRight } from "lucide-react-native"; 1 3 import React, { useState } from "react"; 2 - import { View, Platform } from "react-native"; 4 + import { Platform, View } from "react-native"; 3 5 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"; 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 12 import { openAuthSessionAsync } from "expo-web-browser"; 13 + import { useStore } from "../stores/mainStore"; 13 14 14 15 const LoginScreen = () => { 15 16 const [handle, setHandle] = useState("");