Skip to content

Commit

Permalink
Merge pull request #150 from wearefuturegov/availability-accordion-al…
Browse files Browse the repository at this point in the history
…ways-open

stop availability accordion being open all the time
  • Loading branch information
apricot13 authored Sep 13, 2024
2 parents a719ee0 + 700b93b commit 74c1055
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Filter/StarttimeEndtimeDay.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ const StarttimeEndtimeDayFilter = ({
foldable,
}) => {
const [unfolded, setUnfolded] = useState(
startTime || endTime || day.length > 0
startTime.length > 0 || endTime.length > 0 || day.length > 0
)

return (
Expand Down

0 comments on commit 74c1055

Please sign in to comment.