···22import * as view from './view/index'
33import {RootStoreModel, setupState, RootStoreProvider} from './state'
44import {DesktopWebShell} from './view/shell/desktop-web'
55-import Toast from 'react-native-root-toast'
55+// import Toast from 'react-native-root-toast' TODO
6677function App() {
88 const [rootStore, setRootStore] = useState<RootStoreModel | undefined>(
···2323 return (
2424 <RootStoreProvider value={rootStore}>
2525 <DesktopWebShell />
2626- <Toast.ToastContainer />
2726 </RootStoreProvider>
2827 )
2828+ // <Toast.ToastContainer /> TODO
2929}
30303131export default App
+1-1
src/lib/extractHtmlMeta.ts
···6363 // Workaround for some websites not having a title or description in the meta tags in the initial serve
6464 if (isYoutubeUrl) {
6565 res = {...res, ...extractYoutubeMeta(html)}
6666- } else if (isTwitterUrl) {
6666+ } else if (isTwitterUrl && pathname) {
6767 res = {...extractTwitterMeta({pathname})}
6868 }
6969
···6161 let tmpTranslate: Position | null = null
6262 let isDoubleTapPerformed = false
6363 let lastTapTS: number | null = null
6464- let longPressHandlerRef: number | null = null
6464+ let longPressHandlerRef: NodeJS.Timeout | null = null
65656666 const meaningfulShift = MIN_DIMENSION * 0.01
6767 const scaleValue = new Animated.Value(initialScale)
+1
src/view/com/lightbox/ImageViewing/utils.ts
···7777 const transform = translate.getTranslateTransform()
78787979 if (scale) {
8080+ // @ts-ignore TODO - is scale incorrect? might need to remove -prf
8081 transform.push({scale}, {perspective: new Animated.Value(1000)})
8182 }
8283