- {isAuthenticated && user && initials && (
+ {isAuthenticated && user && (
diff --git a/apps/code/src/renderer/utils/toast.tsx b/apps/code/src/renderer/utils/toast.tsx
index ccd4032ca..e1d610b58 100644
--- a/apps/code/src/renderer/utils/toast.tsx
+++ b/apps/code/src/renderer/utils/toast.tsx
@@ -1,4 +1,10 @@
-import { CheckIcon, InfoIcon, WarningIcon, XIcon } from "@phosphor-icons/react";
+import {
+ CheckIcon,
+ InfoIcon,
+ WarningCircleIcon,
+ WarningIcon,
+ XIcon,
+} from "@phosphor-icons/react";
import { Card, Flex, IconButton, Spinner, Text } from "@radix-ui/themes";
import type { ReactNode } from "react";
import { toast as sonnerToast } from "sonner";
@@ -26,7 +32,9 @@ function ToastComponent(props: ToastProps) {
case "success":
return ;
case "error":
- return ;
+ return (
+
+ );
case "info":
return ;
case "warning":