fix block scoping error for message object creation

This commit is contained in:
Satindar Dhillon 2022-09-26 07:58:51 -07:00
parent 9a3109043c
commit e401be6fb2

View file

@ -349,11 +349,12 @@ export function HighlightsLayer(props: HighlightsLayerProps): JSX.Element {
}
break
case 'share':
const message = {
actionID: 'share',
highlightID: focusedHighlight?.id,
}
if (props.isAppleAppEmbed) {
const message = {
actionID: 'share',
highlightID: focusedHighlight?.id,
}
window?.webkit?.messageHandlers.highlightAction?.postMessage(
message
)