re-enable pdfs on web

This commit is contained in:
Sean Yesmunt 2021-04-05 14:54:46 -04:00
parent a99042b60b
commit 707ad5d4de

View file

@ -30,6 +30,6 @@ export default function I18nMessage(props: Props) {
return (
// style={{height: iframeHeight}}
// ref={iframeRef}
<iframe src={src} title={title} onLoad={onLoad} sandbox="" />
<iframe src={src} title={title} onLoad={onLoad} sandbox={!IS_WEB} />
);
}