diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-27 00:19:58 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-27 00:19:58 -0600 |
commit | 0673129b2018c9db0f7c3fc3e2c3214150efcfb8 (patch) | |
tree | b5cb058ce816d7e69bf68851adf9fdc21b9fc20c | |
parent | 99360f7bd90480b0c382014fa7d889aef8c433a4 (diff) | |
download | voidsky-0673129b2018c9db0f7c3fc3e2c3214150efcfb8.tar.zst |
Fix import paths
-rw-r--r-- | src/view/com/composer/char-progress/CharProgress.web.tsx | 4 | ||||
-rw-r--r-- | src/view/com/composer/text-input/TextInput.web.tsx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/view/com/composer/char-progress/CharProgress.web.tsx b/src/view/com/composer/char-progress/CharProgress.web.tsx index 6bdcc1392..dfb2fad58 100644 --- a/src/view/com/composer/char-progress/CharProgress.web.tsx +++ b/src/view/com/composer/char-progress/CharProgress.web.tsx @@ -1,7 +1,7 @@ import React from 'react' import {View} from 'react-native' -import {Text} from '../util/text/Text' -import {s} from '../../lib/styles' +import {Text} from '../../util/text/Text' +import {s} from '../../../lib/styles' const MAX_TEXT_LENGTH = 256 const DANGER_TEXT_LENGTH = MAX_TEXT_LENGTH diff --git a/src/view/com/composer/text-input/TextInput.web.tsx b/src/view/com/composer/text-input/TextInput.web.tsx index 6960bf7ab..395f8e5a2 100644 --- a/src/view/com/composer/text-input/TextInput.web.tsx +++ b/src/view/com/composer/text-input/TextInput.web.tsx @@ -5,8 +5,8 @@ import { TextInput as RNTextInput, TextStyle, } from 'react-native' -import {usePalette} from '../../lib/hooks/usePalette' -import {addStyle} from '../../lib/addStyle' +import {usePalette} from '../../../lib/hooks/usePalette' +import {addStyle} from '../../../lib/addStyle' export type TextInputRef = RNTextInput |