diff --git a/src/components/app-update-toast.tsx b/src/components/app-update-toast.tsx
index 7631b76..b907c34 100644
--- a/src/components/app-update-toast.tsx
+++ b/src/components/app-update-toast.tsx
@@ -17,26 +17,20 @@ interface AppUpdateToastProps {
function getStageIcon(stage?: string, isUpdating?: boolean) {
if (!isUpdating) {
- return ;
+ return ;
}
switch (stage) {
case "downloading":
- return ;
+ return ;
case "extracting":
- return (
-
- );
+ return ;
case "installing":
- return (
-
- );
+ return ;
case "completed":
- return ;
+ return ;
default:
- return (
-
- );
+ return ;
}
}
@@ -79,7 +73,7 @@ export function AppUpdateToast({
updateProgress.stage === "completed");
return (
-
+
{getStageIcon(updateProgress?.stage, isUpdating)}