From 33d1626506fbbfefa9625173f0fc528c56a5aecb Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Wed, 21 May 2025 22:05:50 -0500 Subject: [PATCH] Use 365 days for dramatic effect --- app/helpers/collections_helper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/helpers/collections_helper.rb b/app/helpers/collections_helper.rb index 0f9ac6aad..38051348a 100644 --- a/app/helpers/collections_helper.rb +++ b/app/helpers/collections_helper.rb @@ -5,7 +5,7 @@ module CollectionsHelper [ "1 week", 7.days ], [ "1 month", 30.days ], [ "90 days", 90.days ], - [ "1 year", 365.days ] + [ "365 days", 365.days ] ] end @@ -17,7 +17,7 @@ module CollectionsHelper [ "1 week", 7.days ], [ "2 weeks", 14.days ], [ "1 month", 30.days ], - [ "1 year", 365.days ] + [ "365 days", 365.days ] ] end end