diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-22 12:02:31 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-22 12:02:31 -0600 |
commit | c2a39d7c1f59ddc0625b49d423c15799b5eba61b (patch) | |
tree | 542fa3bf1b28aad0504651cfc5a818239504581a /src/view/shell/mobile/TabsSelector.tsx | |
parent | e858bb52de180645bba4f5ffa2f8bc0cfe8ad1fe (diff) | |
download | voidsky-c2a39d7c1f59ddc0625b49d423c15799b5eba61b.tar.zst |
Refactor: create src/lib to reflect actual sharing of that code
Diffstat (limited to 'src/view/shell/mobile/TabsSelector.tsx')
-rw-r--r-- | src/view/shell/mobile/TabsSelector.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/shell/mobile/TabsSelector.tsx b/src/view/shell/mobile/TabsSelector.tsx index 4b246728f..be54cfc5b 100644 --- a/src/view/shell/mobile/TabsSelector.tsx +++ b/src/view/shell/mobile/TabsSelector.tsx @@ -21,7 +21,7 @@ import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import Swipeable from 'react-native-gesture-handler/Swipeable' import {useStores} from '../../../state' import {s, colors} from '../../lib/styles' -import {toShareUrl} from '../../lib/strings' +import {toShareUrl} from '../../../lib/strings' import {match} from '../../routes' const TAB_HEIGHT = 42 |