Skip to content

Commit

Permalink
Fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapawar1 committed Oct 4, 2023
1 parent 6bcfdb3 commit 5eb03ed
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/Account.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { useState, useEffect } from 'react';
import supabase from '../utils/supabase';
import { StyleSheet, View, Alert, ScrollView } from 'react-native';
import { Button, Input } from 'react-native-elements';
import { Session } from '@supabase/supabase-js';
import DateTimePicker from '@react-native-community/datetimepicker';
import supabase from '../utils/supabase';
import UserStringInput from './UserStringInput';

const styles = StyleSheet.create({
Expand Down
5 changes: 0 additions & 5 deletions src/components/Login.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
import React, { useState } from 'react';
import { Alert, StyleSheet, View } from 'react-native';
<<<<<<< HEAD
import supabase from '../utils/supabase';
import { Button, Input } from 'react-native-elements';
=======
import { Button, Input } from 'react-native-elements';
import supabase from '../utils/supabase';
>>>>>>> 142e05f30de7c365f135becc2ab6a97884ef93fe

const styles = StyleSheet.create({
container: {
Expand Down
2 changes: 1 addition & 1 deletion src/screens/LoginScreen.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import 'react-native-url-polyfill/auto';
import { useState, useEffect } from 'react';
import supabase from '../utils/supabase';
import { View } from 'react-native';
import { Session } from '@supabase/supabase-js';
import supabase from '../utils/supabase';
import Login from '../components/Login';
import Account from '../components/Account';

Expand Down

0 comments on commit 5eb03ed

Please sign in to comment.