()
| 11 | const { t } = useTranslation(); |
| 12 | |
| 13 | const handleClearData = () => { |
| 14 | window.localStorage.clear(); |
| 15 | close(); |
| 16 | toast.success("Data cleared. The page will be reloaded."); |
| 17 | setTimeout(() => { |
| 18 | window.location.reload(); |
| 19 | }, 500); |
| 20 | }; |
| 21 | |
| 22 | return ( |
| 23 | <Modal title="Clear all data" className="!w-96" onClose={close}> |