1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-20 23:30:05 +02:00

Chore: Mobile: Update mobile components for compatibility with React Native 0.79 (#12154)

This commit is contained in:
Henry Heino
2025-04-24 00:48:58 -07:00
committed by GitHub
parent cf626bee76
commit dfa340a137
22 changed files with 93 additions and 61 deletions

View File

@@ -99,7 +99,7 @@ interface Props {
}
const PluginRunnerWebViewComponent: React.FC<Props> = props => {
const webviewRef = useRef<WebViewControl>();
const webviewRef = useRef<WebViewControl>(null);
const [webviewLoaded, setLoaded] = useState(false);
const [webviewReloadCounter, setWebviewReloadCounter] = useState(0);