Skip to content

Commit e52b878

Browse files
authored
Merge pull request #85 from abakus-ntnu/main
fix: very very wrong dates
2 parents 3b83bc9 + 6d6ea0a commit e52b878

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/lib/shows.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export type Show = {
88
export const SHOWS: Show[] = [
99
{
1010
name: "Premiere",
11-
when: new Date("2026-03-13T19:00:00+0100"),
11+
when: new Date("2025-03-13T19:00:00+0100"),
1212
where: {
1313
name: "Byscenen i Trondheim",
1414
mapLink: "https://maps.app.goo.gl/n7bMGGkzLCdF1oUc9",
@@ -20,7 +20,7 @@ export const SHOWS: Show[] = [
2020
},
2121
{
2222
name: "Andre forestilling",
23-
when: new Date("2026-03-14T17:00:00+0100"),
23+
when: new Date("2025-03-14T17:00:00+0100"),
2424
where: {
2525
name: "Byscenen i Trondheim",
2626
mapLink: "https://maps.app.goo.gl/n7bMGGkzLCdF1oUc9",
@@ -32,7 +32,7 @@ export const SHOWS: Show[] = [
3232
},
3333
{
3434
name: "Siste forestilling",
35-
when: new Date("2026-03-14T20:30:00+0100"),
35+
when: new Date("2025-03-14T20:30:00+0100"),
3636
where: {
3737
name: "Byscenen i Trondheim",
3838
mapLink: "https://maps.app.goo.gl/n7bMGGkzLCdF1oUc9",
@@ -45,8 +45,8 @@ export const SHOWS: Show[] = [
4545
];
4646

4747
// SLIPP
48-
export const SHOW_REVEAL = new Date("2026-02-07T22:00:00+0100");
48+
export const SHOW_REVEAL = new Date("2025-02-07T22:00:00+0100");
4949
export const TICKET_RELEASE: Date | "TBA" = new Date(
50-
"2026-02-19T16:00:00+0100",
50+
"2025-02-19T16:00:00+0100",
5151
);
5252
export const TICKET_LINK: string | undefined = "https://byscn.no/abakus_25";

0 commit comments

Comments
 (0)