Fix import paths

zio/stable
Paul Frazee 2023-01-27 00:19:58 -06:00
parent 99360f7bd9
commit 0673129b20
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
import React from 'react' import React from 'react'
import {View} from 'react-native' import {View} from 'react-native'
import {Text} from '../util/text/Text' import {Text} from '../../util/text/Text'
import {s} from '../../lib/styles' import {s} from '../../../lib/styles'
const MAX_TEXT_LENGTH = 256 const MAX_TEXT_LENGTH = 256
const DANGER_TEXT_LENGTH = MAX_TEXT_LENGTH const DANGER_TEXT_LENGTH = MAX_TEXT_LENGTH

View File

@ -5,8 +5,8 @@ import {
TextInput as RNTextInput, TextInput as RNTextInput,
TextStyle, TextStyle,
} from 'react-native' } from 'react-native'
import {usePalette} from '../../lib/hooks/usePalette' import {usePalette} from '../../../lib/hooks/usePalette'
import {addStyle} from '../../lib/addStyle' import {addStyle} from '../../../lib/addStyle'
export type TextInputRef = RNTextInput export type TextInputRef = RNTextInput