diff --git a/assets/stores/announcements.ts b/assets/stores/announcements.ts index d7a39ad0..032f6098 100644 --- a/assets/stores/announcements.ts +++ b/assets/stores/announcements.ts @@ -14,21 +14,7 @@ type Announcement = { const { data: releases } = useFetch(withBase("/api/releases")).get().json(); -const otherAnnouncements = [ - { - body: "I'd love to hear about your experience in this short survey to shape the future of Dozzle!", - createdAt: new Date("2025-01-22T18:00:00Z"), - htmlUrl: "https://tally.so/r/wLv4g2?ref=notification", - name: "Take survey!", - announcement: true, - tag: "survey-2025-01", - latest: true, - mentionsCount: 0, - features: 0, - bugFixes: 0, - breaking: 0, - }, -] as Announcement[]; +const otherAnnouncements = [] as Announcement[]; const announcements = computed(() => { const newReleases =