Skip to content

Commit

Permalink
fix: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ZipingL committed Jun 6, 2024
1 parent f0ee4d6 commit 521c01e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions canary/routes/CDN.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export default function CDN() {

(window as any).React = React; // expose React as global since the react-adobe embed cdn expects React to be loaded via cdn as well

console.info("ReactAdobeEMbed",(global as any).ReactAdobeEmbed)
const ReactViewAdobe = (global as any).ReactAdobeEmbed?.ReactViewAdobe;
console.info("ReactAdobeEMbed",(window as any).ReactAdobeEmbed)
const ReactViewAdobe = (window as any).ReactAdobeEmbed?.ReactViewAdobe;
return (
<section className="container section">
<div className="row ws-m">
Expand Down

0 comments on commit 521c01e

Please sign in to comment.