Skip to content

Changelog - Dev - 01.23.2026

All notable changes to this project for January 23, 2026 will be documented in this file.

The format is based on Keep a Changelog.


[Unreleased] - 2026-01-23

Fixed

  • Venue Closure Filtering: Fixed issue where approved venue closures were not being filtered out of venue listings in the app. Now all venue queries (getVenues() and getNearbyVenues()) properly exclude venues with status: 'closed'. This ensures that when a venue closure report is approved via the admin CLI tool, the closed venue immediately stops appearing in user search results and nearby venue listings.

Notes

  • This fix affects the following functions in venueService.js:
    • getVenues() - Added where('status', '!=', 'closed') query filter
    • getNearbyVenues() - Added status check in both main and retry geohash query loops
    • fallbackFilter() - Automatically inherits the fix through getVenues() call

Built with VitePress