feat: Update parks API to remove note about ignored parameters; add comprehensive frontend integration prompts for park filtering

This commit is contained in:
pacnpal
2025-08-31 00:05:43 -04:00
parent 49f874f7b4
commit 5bf351fd2b
3 changed files with 204 additions and 1 deletions

View File

@@ -744,7 +744,6 @@ export const parksApi = {
if (params) {
Object.entries(params).forEach(([key, value]) => {
if (value !== undefined) {
// Note: continent and park_type parameters are accepted but ignored by backend
searchParams.append(key, value.toString());
}
});