Ken So

Results 1 comments of Ken So

Here I use a bit hacky way to achieve this ```js const [isLibLoaded, setIsLibLoaded] = useState(false); useEffect(() => { const scriptSrc = 'https://cdn.checkout.com/js/framesv2.min.js'; const existingScriptTag = document.querySelector( `script[src='${scriptSrc}']` ); if...