diff --git a/src/components/ErrorBoundary.jsx b/src/components/ErrorBoundary.jsx index 6053c74..f7faf1f 100644 --- a/src/components/ErrorBoundary.jsx +++ b/src/components/ErrorBoundary.jsx @@ -1,17 +1,17 @@ import React from 'react'; -import { ExclamationTriangleIcon } from '@radix-ui/react-icons'; +import { ExclamationTriangleIcon } from '@heroicons/react/24/solid'; const ErrorBoundary = ({ error }) => ( -
-
- +
+
+

Oops! Something went wrong.

{error?.message || 'An unexpected error occurred.'}