diff --git a/index.html b/index.html
index fa9e599..8fda427 100644
--- a/index.html
+++ b/index.html
@@ -1,9 +1,15 @@
-
+
Holiday List
+
+
+
+
+
+
diff --git a/src/CalendarApi.tsx b/src/CalendarApi.tsx
index e4c1332..0828125 100644
--- a/src/CalendarApi.tsx
+++ b/src/CalendarApi.tsx
@@ -4,7 +4,7 @@ import { useEffect, useState } from "react";
type Holiday = { "date": string, "localName": string, "countryCode": string, "fixed": string, "global": string, "types": string[] }
async function getText(satYear: string): Promise {
- return JSON.parse(await (await fetch("https://date.nager.at/api/v3/publicholidays/" + satYear + "/DE")).text());
+ return await (await fetch("https://date.nager.at/api/v3/publicholidays/" + satYear + "/DE")).json();
}
function ListHolidays() {