We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1416f7 commit 315b983Copy full SHA for 315b983
packages/metastream-app/src/components/Webview.tsx
@@ -118,9 +118,9 @@ export class Webview extends Component<Props, State> {
118
119
if (action.type === 'activity') {
120
this.onIFrameActivity()
121
- } else {
122
- // if we receive a message from the frame, we know we were able to connect
123
- // ignore 'activity' since it's delayed
+ } else if (action.type === 'load-script') {
+ // 'load-script' runs during webview initialization so we know the page
+ // has started loading at this point
124
this.clearNavigateTimeout()
125
}
126
0 commit comments