diff --git a/config/collections/index.js b/config/collections/index.js
index 18f45d5d..21758cf4 100644
--- a/config/collections/index.js
+++ b/config/collections/index.js
@@ -171,14 +171,15 @@ export const albumReleasesCalendar = (collection) => {
   const events = albumReleases.map(album => {
     const date = DateTime.fromFormat(album.date, 'MMMM d, yyyy')
     if (!date.isValid) return null
-
     return {
       start: [
         date.year,
         date.month,
-        date.day,
-        0, 0
+        date.day
       ],
+      startInputType: 'local',
+      startOutputType: 'local',
+      duration: { days: 1 },
       title: `Release: ${album.artist} / ${album.title}`,
       description: `Check out this new album release: ${album.url}`,
       url: album.url,
@@ -189,12 +190,12 @@ export const albumReleasesCalendar = (collection) => {
 
   const { error, value } = ics.createEvents(events)
   if (error) {
-    console.error('Error creating ICS events:', error)
+    console.error('Error creating events:', error)
     events.forEach((event, index) => {
       console.error(`Event ${index}:`, event)
     })
     return ''
   }
 
-  return value
+  return value;
 }
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
index e13f8204..e00c405c 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "coryd.dev",
-  "version": "21.5.1",
+  "version": "21.5.2",
   "lockfileVersion": 3,
   "requires": true,
   "packages": {
     "": {
       "name": "coryd.dev",
-      "version": "21.5.1",
+      "version": "21.5.2",
       "license": "MIT",
       "dependencies": {
         "@cdransf/api-text": "^1.4.0",
diff --git a/package.json b/package.json
index 93f5c2b7..2339c45f 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "coryd.dev",
-  "version": "21.5.1",
+  "version": "21.5.2",
   "description": "The source for my personal site. Built using 11ty (and other tools).",
   "type": "module",
   "scripts": {
diff --git a/src/data/albumReleases.js b/src/data/albumReleases.js
index 4691215a..b27cd370 100644
--- a/src/data/albumReleases.js
+++ b/src/data/albumReleases.js
@@ -1,6 +1,5 @@
 import { createClient } from '@supabase/supabase-js'
 import { DateTime } from 'luxon'
-import { sanitizeMediaString, parseCountryField } from '../../config/utilities/index.js'
 
 const SUPABASE_URL = process.env.SUPABASE_URL
 const SUPABASE_KEY = process.env.SUPABASE_KEY
diff --git a/src/pages/dynamic/music/artists/artist.html b/src/pages/dynamic/music/artists/artist.html
index 46c0a4b7..82a58ed9 100644
--- a/src/pages/dynamic/music/artists/artist.html
+++ b/src/pages/dynamic/music/artists/artist.html
@@ -82,8 +82,8 @@ schema: artist
         <li>
           On <strong class="highlight-text">{{ concert.date | date: "%B %e, %Y" }}</strong>
           {% if venue %} at {{ venue }}{% endif %}
-          {%- if concert.concert_notes -%}
-            {% assign notes = concert.concert_notes | prepend: "### Notes\n" | markdown %}
+          {%- if concert.notes -%}
+            {% assign notes = concert.notes | prepend: "### Notes\n" | markdown %}
             {% render "partials/blocks/modal.liquid", label:"Concert info", icon:"info-circle", content:notes, id:concert.id %}
           {%- endif -%}
         </li>