import { Dialog } from '@headlessui/react' import { useState } from 'react' import { ActionButton } from './ActionButton' import { useKclContext } from 'lang/KclProvider' export function WasmErrBanner() { const [isBannerDismissed, setBannerDismissed] = useState(false) const { wasmInitFailed } = useKclContext() if (!wasmInitFailed) return null return ( ({})} >

Problem with our WASM blob :(

setBannerDismissed(true)} iconStart={{ icon: 'close', className: 'p-1', bgClassName: 'bg-warn-70 hover:bg-warn-80 dark:bg-warn-70 dark:hover:bg-warn-80', iconClassName: 'text-warn-10 group-hover:text-warn-10 dark:text-warn-10 dark:group-hover:text-warn-10', }} className="!p-0 !bg-transparent !border-transparent" />

WASM or web assembly {' '} is core part of how our app works. It might because you OS is not up-to-date. If you're able to update your OS to a later version, try that. If not create an issue on{' '} our Github .

) }