From c650a2242d9eac87d79d60622255df127ac44b33 Mon Sep 17 00:00:00 2001 From: Jason Kai <21226986+kaitj@users.noreply.github.com> Date: Fri, 24 Oct 2025 09:52:26 -0400 Subject: [PATCH] Remove gather link and monthly cal --- src/lib/components/Footer.svelte | 15 +----------- static/NMIND_monthly_meeting.ics | 41 -------------------------------- tests/Footer.test.ts | 6 ++--- 3 files changed, 4 insertions(+), 58 deletions(-) delete mode 100644 static/NMIND_monthly_meeting.ics diff --git a/src/lib/components/Footer.svelte b/src/lib/components/Footer.svelte index 353f5c20..db86bbdd 100644 --- a/src/lib/components/Footer.svelte +++ b/src/lib/components/Footer.svelte @@ -1,5 +1,4 @@ diff --git a/static/NMIND_monthly_meeting.ics b/static/NMIND_monthly_meeting.ics deleted file mode 100644 index 304b05c8..00000000 --- a/static/NMIND_monthly_meeting.ics +++ /dev/null @@ -1,41 +0,0 @@ -BEGIN:VCALENDAR -PRODID:-//Mozilla.org/NONSGML Mozilla Calendar V1.1//EN -VERSION:2.0 -BEGIN:VTIMEZONE -TZID:America/New_York -BEGIN:DAYLIGHT -TZOFFSETFROM:-0500 -TZOFFSETTO:-0400 -TZNAME:EDT -DTSTART:19700308T020000 -RRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3 -END:DAYLIGHT -BEGIN:STANDARD -TZOFFSETFROM:-0400 -TZOFFSETTO:-0500 -TZNAME:EST -DTSTART:19701101T020000 -RRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11 -END:STANDARD -END:VTIMEZONE -BEGIN:VEVENT -CREATED:20210902T160734Z -LAST-MODIFIED:20210902T161026Z -DTSTAMP:20210902T161026Z -UID:1fe997c0-af74-434c-bfd6-5e1adec09285 -SUMMARY:NMIND Hack-a-day (monthly) -RRULE:FREQ=MONTHLY;BYDAY=1TH -CATEGORIES:Meeting -DTSTART;TZID=America/New_York:20210902T110000 -DTEND;TZID=America/New_York:20210902T160000 -TRANSP:OPAQUE -X-MOZ-GENERATION:2 -LOCATION:https://gather.town/app/ESJPNXX7CVirKett/nmind -DESCRIPTION;ALTREP="data:text/html,%3Cbody%3EThe%20first%20Thursday%20of%2 - 0every%20month%2C%20NMIND%20gathers%20in%20gather.town%20to%0A%20collabora - te%20on%20our%20current%20priorities.%3C%2Fbody%3E":The first Thursday of - every month\, NMIND gathers in gather.town to collaborate\non our current - priorities. -SEQUENCE:1 -END:VEVENT -END:VCALENDAR diff --git a/tests/Footer.test.ts b/tests/Footer.test.ts index 67df71db..dc10c85c 100644 --- a/tests/Footer.test.ts +++ b/tests/Footer.test.ts @@ -1,5 +1,5 @@ -import { render, cleanup } from '@testing-library/svelte'; -import { describe, it, expect, afterEach } from 'vitest'; +import { cleanup, render } from '@testing-library/svelte'; +import { afterEach, describe, expect, it } from 'vitest'; import Footer from '../src/lib/components/Footer.svelte'; describe('Footer', () => { @@ -7,7 +7,7 @@ describe('Footer', () => { it('should render all links', () => { const { getByRole } = render(Footer); - const linkNames = ['GitHub', 'Gather', 'Monthly Hack-a-day', 'Mailing List']; + const linkNames = ['GitHub', 'Mailing List']; linkNames.forEach((linkName) => { expect(getByRole('link', { name: linkName })).toBeDefined();