Skip to content

Commit

Permalink
fix production block url
Browse files Browse the repository at this point in the history
  • Loading branch information
Wattenberger committed Nov 22, 2021
1 parent 6e44327 commit 5b67438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/production-block.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const ProductionBlock = (props: ProductionBlockProps) => {
}, [bundleCode, contents, tree, metadata, context, iframeIsLoaded])

if (!bundleCode) return null
const url = "http://localhost:3000/block-testing"
const url = "https://github-blocks.vercel.app/block-testing"

return (
<iframe className="w-full h-full border-none" src={url} title="Block testing" onLoad={() => setIframeIsLoaded(true)} ref={iframeElement}
Expand Down

0 comments on commit 5b67438

Please sign in to comment.