Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapawar1 committed Apr 21, 2024
1 parent efb0255 commit 6e5fcd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
9 changes: 2 additions & 7 deletions src/app/auth/verify/index.tsx
Original file line number Diff line number Diff line change
@@ -1,21 +1,16 @@
import { Link, Redirect, router, useLocalSearchParams } from 'expo-router';
import { Redirect, router, useLocalSearchParams } from 'expo-router';
import { useState, useRef, useEffect } from 'react';
import { View, Text } from 'react-native';
import { Icon } from 'react-native-elements';
import OTPTextInput from 'react-native-otp-textinput';
import { SafeAreaView } from 'react-native-safe-area-context';
import Toast, { BaseToast, BaseToastProps } from 'react-native-toast-message';
import Toast from 'react-native-toast-message';

import styles from './styles';
import BackButton from '../../../components/BackButton/BackButton';
import colors from '../../../styles/colors';
import globalStyles from '../../../styles/globalStyles';
import { useSession } from '../../../utils/AuthContext';

import Toast, { BaseToast, BaseToastProps } from 'react-native-toast-message';
import { Icon } from 'react-native-elements';


function VerificationScreen() {
const { user, verifyOtp, resendVerification } = useSession();
const [errorMessage, setErrorMessage] = useState('');
Expand Down
1 change: 0 additions & 1 deletion src/components/PreviewCard/PreviewCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ function PreviewCard({
pressFunction,
reactions: preloadedReactions = null,
}: PreviewCardProps) {

const [reactions, setReactions] = useState<string[] | null>(
preloadedReactions,
);
Expand Down

0 comments on commit 6e5fcd9

Please sign in to comment.