From c82724949b475bb835caa67ee0aeec813aa1ebd8 Mon Sep 17 00:00:00 2001 From: Aditya Pawar Date: Mon, 27 Nov 2023 20:59:01 -0800 Subject: [PATCH] Fix tsc errors --- src/app/auth/login/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/auth/login/index.tsx b/src/app/auth/login/index.tsx index fcc0d12d..d57f289d 100644 --- a/src/app/auth/login/index.tsx +++ b/src/app/auth/login/index.tsx @@ -1,11 +1,12 @@ import { Link, router } from 'expo-router'; import React, { useState } from 'react'; -import { Text, View, StyleSheet } from 'react-native'; +import { Text, View } from 'react-native'; import { Icon } from 'react-native-elements'; import { SafeAreaView } from 'react-native-safe-area-context'; import validator from 'validator'; import styles from './styles'; +import { isEmailUsed, queryEmailByUsername } from '../../../queries/auth'; import globalStyles from '../../../styles/globalStyles'; import { useSession } from '../../../utils/AuthContext'; import StyledButton from '../../../components/StyledButton/StyledButton';