import React from 'react' import { Modal, ModalPortal, ModalContent, ModalHeader, ModalTitle, ModalFooter, ModalClose, Button, } from '@janhq/uikit' import { Share2Icon } from '@radix-ui/react-icons' import { useAtom } from 'jotai' import { updateVersionError } from '@/containers/Providers/Jotai' const UpdatedFailedModal = () => { const [error, setError] = useAtom(updateVersionError) return ( setError(undefined)}> Unable to Install Update

An error occurred while installing Jan{' '} {error}. We appreciate your help with{' '} manual downloading and installation.

setError(undefined)}> { window.open('https://github.com/janhq/jan#download', '_blank') setError(undefined) }} >
) } export default UpdatedFailedModal