From 571de4084ea02261573beb3ac7131c5d43d1822d Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Tue, 11 Feb 2025 09:57:36 -0800 Subject: [PATCH] chore: removes survey --- assets/stores/announcements.ts | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) 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 =