From 5d9bcd4a2dbf6c162f3272c43e8f9ad5d7ca2ad9 Mon Sep 17 00:00:00 2001 From: Kim LaRocca Date: Fri, 25 Aug 2023 11:42:12 -0400 Subject: [PATCH] remove stitcher from how to listen options (#197) --- utilities/constants.js | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/utilities/constants.js b/utilities/constants.js index b400057..e5f70b8 100644 --- a/utilities/constants.js +++ b/utilities/constants.js @@ -20,11 +20,6 @@ export const playServices = [ icon: 'overcast', url: 'https://overcast.fm/itunes152249110/radiolab' }, - { - name: 'Stitcher', - icon: 'stitcher', - url: 'https://www.stitcher.com/podcast/wnycs-radiolab' - }, { name: 'NPR One', icon: 'nprone', @@ -62,15 +57,15 @@ export const playServices = [ } ] -export const yearFilterOptions = [{ +export const yearFilterOptions = [ { year: 'All' -}] +} ] const yearfilterStart = 2007 const yearfilterEnd = new Date().getFullYear() -Array.from(new Array(yearfilterEnd - yearfilterStart + 1), (x, i) => - yearFilterOptions.push({ - 'year': String(yearfilterEnd - i) - }) +Array.from( new Array( yearfilterEnd - yearfilterStart + 1 ), ( x, i ) => + yearFilterOptions.push( { + 'year': String( yearfilterEnd - i ) + } ) ) //console.log('yearFilterOptions = ', yearFilterOptions)