chore: fix eslint crashing issues (#1951)
This commit is contained in:
@@ -39,6 +39,7 @@ export class MobileWebReceiver {
|
||||
this.handleNativeEvent(nativeEvent, messageData)
|
||||
}
|
||||
} catch (error) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log('[MobileWebReceiver] Error parsing message from React Native', error)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,5 +6,5 @@ export const shareBlobOnMobile = async (application: WebApplication, blob: Blob,
|
||||
throw new Error('Share function being used outside mobile webview')
|
||||
}
|
||||
const base64 = await getBase64FromBlob(blob)
|
||||
application.mobileDevice().shareBase64AsFile(base64, filename)
|
||||
void application.mobileDevice().shareBase64AsFile(base64, filename)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user