From 489cc4e29b82edb49e5367138f5baed43519b006 Mon Sep 17 00:00:00 2001 From: Miles Watkins Date: Wed, 27 Nov 2024 05:04:27 -0500 Subject: [PATCH] Add 'consecutive' to nights filter --- src/components/Filters.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Filters.js b/src/components/Filters.js index af8aaf6..65600c6 100644 --- a/src/components/Filters.js +++ b/src/components/Filters.js @@ -73,7 +73,8 @@ const Filters = ({ ))} - night{consecutiveNights > 1 && "s"}. + {consecutiveNights > 1 && "consecutive "}night + {consecutiveNights > 1 && "s"}.
Additionally, I'd like the lookout to: