From 82eedd58092a26d6f49662c58ec3cd62e3367250 Mon Sep 17 00:00:00 2001 From: seanpierce Date: Wed, 6 Mar 2024 08:08:53 -0800 Subject: [PATCH] Update verbiage --- app/src/store/content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/store/content.js b/app/src/store/content.js index 4d5a9ab..7259a29 100644 --- a/app/src/store/content.js +++ b/app/src/store/content.js @@ -92,7 +92,7 @@ const getMarqueeText = responseData => { let shows = [] responseData.schedule_upcoming.forEach(show => { let startTime = moment(show.start_date_time, originalDateTimeFormat).format(newDateTimeFormat) - shows.push(`${show.title} at ${startTime}`) + shows.push(`${show.title} ${startTime}`) }) text += shows.join(', ')