diff --git a/src/components/app-update-toast.tsx b/src/components/app-update-toast.tsx
index f1aaca9..9f2ddcb 100644
--- a/src/components/app-update-toast.tsx
+++ b/src/components/app-update-toast.tsx
@@ -35,20 +35,20 @@ export function AppUpdateToast({
};
return (
-
+
{isUpdating ? (
-
+
) : (
-
+
)}
-
+
-
-
+
+
Donut Browser Update Available
-
+
)}
@@ -83,13 +83,13 @@ export function AppUpdateToast({
)}
{!isUpdating && (
-
+
)}
-
- {updateInfo.release_notes && !isUpdating && (
-
-
-
- Release Notes
-
-
- {updateInfo.release_notes.length > 200
- ? `${updateInfo.release_notes.substring(0, 200)}...`
- : updateInfo.release_notes}
-
-
-
- )}
);