diff --git a/frontend/src/components/dashboard/AlertBanner.tsx b/frontend/src/components/dashboard/AlertBanner.tsx
index bd86cc1..a511259 100644
--- a/frontend/src/components/dashboard/AlertBanner.tsx
+++ b/frontend/src/components/dashboard/AlertBanner.tsx
@@ -1,5 +1,6 @@
import { Bell, X } from 'lucide-react';
import { getRelativeTime } from '@/lib/date-utils';
+import SnoozeDropdown from '@/components/reminders/SnoozeDropdown';
import type { Reminder } from '@/types';
interface AlertBannerProps {
@@ -33,18 +34,7 @@ export default function AlertBanner({ alerts, onDismiss, onSnooze }: AlertBanner
{alert.remind_at ? getRelativeTime(alert.remind_at) : ''}
-
- {([5, 10, 15] as const).map((m) => (
-
- ))}
-
+ onSnooze(alert.id, m)} label={alert.title} />