Remove all native base dependencies.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Text } from "native-base";
|
||||
import { Title } from "react-native-paper";
|
||||
import React, { useEffect, useState } from "react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { StyleSheet, View } from "react-native";
|
||||
@@ -36,7 +36,7 @@ export function SignInErrorAlertComponent({ signInError }) {
|
||||
}, [signInError, setErrorText]);
|
||||
return (
|
||||
<View>
|
||||
{errorText ? <Text style={localStyles.alert}>{errorText}</Text> : null}
|
||||
{errorText ? <Title style={localStyles.alert}>{errorText}</Title> : null}
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user