Skip to content

Commit

Permalink
Remove text file
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasbiagioninc committed Dec 6, 2024
1 parent b23f6e4 commit 6213e43
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 20 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { MultiPlatformSafeAreaView } from '@components/multi-platform-safe-area-view'
import { BounceableWind } from '@components/styled'
import { Text } from '@components/text'
import { TextFormField } from '@components/text-form-field'
import {
ForgotPasswordInput,
Expand All @@ -9,7 +8,7 @@ import {
userApi,
} from '@services/user'
import { FormProvider, useTnForm } from '@thinknimble/tn-forms-react'
import { ScrollView, View } from 'react-native'
import { ScrollView, Text, View } from 'react-native'
import { getNavio } from '../routes'

const ForgotPasswordInner = () => {
Expand All @@ -33,7 +32,7 @@ const ForgotPasswordInner = () => {
return (
<MultiPlatformSafeAreaView safeAreaClassName="h-full mt-5">
<View className="w-full content-center mx-auto py-10 bg-slate-200 rounded-lg items-center px-4">
<Text textClassName="text-black text-3xl" variant="bold">
<Text className="text-primary-bold text-black text-3xl">
Reset Password
</Text>
<ScrollView className="w-full" contentContainerClassName="self-start w-full">
Expand All @@ -45,7 +44,7 @@ const ForgotPasswordInner = () => {
disabled={!form.isValid}
>
<View className="rounded-lg bg-[#042642] w-full items-center py-2">
<Text textClassName="text-white text-lg" variant="bold">
<Text className="text-primary-bold text-white text-lg">
Reset Password
</Text>
</View>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { MultiPlatformSafeAreaView } from '@components/multi-platform-safe-area-view'
import { BounceableWind } from '@components/styled'
import { Text } from '@components/text'
import { TextFormField } from '@components/text-form-field'
import { ResetPasswordForm, ResetPasswordInput, TResetPasswordForm, userApi } from '@services/user'
import { FormProvider, useTnForm } from '@thinknimble/tn-forms-react'
import { ScrollView, View } from 'react-native'
import { ScrollView, Text, View } from 'react-native'
import { getNavio } from '../routes'
import { useAuth } from '@stores/auth'

Expand Down Expand Up @@ -37,7 +36,7 @@ const ResetPasswordInner = () => {
return (
<MultiPlatformSafeAreaView safeAreaClassName="h-full mt-5">
<View className="w-full content-center mx-auto py-10 bg-slate-200 rounded-lg items-center px-4">
<Text textClassName="text-black text-3xl" variant="bold">
<Text className="text-primary-bold text-black text-3xl">
Reset Password
</Text>
<ScrollView className="w-full" contentContainerClassName="self-start w-full">
Expand All @@ -52,7 +51,7 @@ const ResetPasswordInner = () => {
disabled={!form.isValid}
>
<View className="rounded-lg bg-[#042642] w-full items-center py-2">
<Text textClassName="text-white text-lg" variant="bold">
<Text className="text-primary-bold text-white text-lg">
Reset Password
</Text>
</View>
Expand Down

0 comments on commit 6213e43

Please sign in to comment.