Bluesky app fork with some witchin' additions 💫

Fix import paths

+4 -4
+2 -2
src/view/com/composer/char-progress/CharProgress.web.tsx
··· 1 1 import React from 'react' 2 2 import {View} from 'react-native' 3 - import {Text} from '../util/text/Text' 4 - import {s} from '../../lib/styles' 3 + import {Text} from '../../util/text/Text' 4 + import {s} from '../../../lib/styles' 5 5 6 6 const MAX_TEXT_LENGTH = 256 7 7 const DANGER_TEXT_LENGTH = MAX_TEXT_LENGTH
+2 -2
src/view/com/composer/text-input/TextInput.web.tsx
··· 5 5 TextInput as RNTextInput, 6 6 TextStyle, 7 7 } from 'react-native' 8 - import {usePalette} from '../../lib/hooks/usePalette' 9 - import {addStyle} from '../../lib/addStyle' 8 + import {usePalette} from '../../../lib/hooks/usePalette' 9 + import {addStyle} from '../../../lib/addStyle' 10 10 11 11 export type TextInputRef = RNTextInput 12 12