From 573709c4272f300316a85632fed1bbac7291338f Mon Sep 17 00:00:00 2001 From: Manish Kumar Gupta Date: Thu, 30 Oct 2025 08:33:56 -0700 Subject: [PATCH 1/3] Increase DEFAULT_QUERY_LIMIT from 50 to 80 As a test for holes in view --- src/pages/Explore/utils/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Explore/utils/constants.ts b/src/pages/Explore/utils/constants.ts index fd84a43b..77bbe93f 100644 --- a/src/pages/Explore/utils/constants.ts +++ b/src/pages/Explore/utils/constants.ts @@ -1,5 +1,5 @@ export const SIDEBAR_WIDTH = 430; -export const DEFAULT_QUERY_LIMIT = 50; +export const DEFAULT_QUERY_LIMIT = 80; export const DEFAULT_MIN_ZOOM = 10; export const DEFAULT_MAP_STYLE = "grayscale_light"; export const MAX_ZOOM_FOR_COLLECTION_OUTLINE = 6; From c2bc26b10af60ec61542c845bf15c1c4de2c3f5e Mon Sep 17 00:00:00 2001 From: Manish Kumar Gupta Date: Thu, 30 Oct 2025 09:47:15 -0700 Subject: [PATCH 2/3] Fix deployment workflow by setting environment variable --- .../azure-static-web-apps-wonderful-stone-06c70c70f.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/azure-static-web-apps-wonderful-stone-06c70c70f.yml b/.github/workflows/azure-static-web-apps-wonderful-stone-06c70c70f.yml index 545b9074..a79dbc0b 100644 --- a/.github/workflows/azure-static-web-apps-wonderful-stone-06c70c70f.yml +++ b/.github/workflows/azure-static-web-apps-wonderful-stone-06c70c70f.yml @@ -51,15 +51,15 @@ jobs: id: builddeploy-test uses: Azure/static-web-apps-deploy@v1 with: - azure_static_web_apps_api_token: - ${{ secrets.AZURE_STATIC_WEB_APPS_API_WONDERFUL_STONE_06c70c70f }} + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_WONDERFUL_STONE_06c70c70f }} repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) - skip_deploy_on_missing_secrets: true action: "upload" skip_app_build: true app_location: "build" api_location: "api" output_location: "build" + env: + SKIP_DEPLOY_ON_MISSING_SECRETS: true close_pull_request_job: if: github.event_name == 'pull_request' && github.event.action == 'closed' From bd001c1500931151312b7acabc3fe602bd34fbbd Mon Sep 17 00:00:00 2001 From: Manish Kumar Gupta Date: Thu, 30 Oct 2025 10:03:38 -0700 Subject: [PATCH 3/3] Fix token case in Azure deployment workflow --- .../azure-static-web-apps-wonderful-stone-06c70c70f.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/azure-static-web-apps-wonderful-stone-06c70c70f.yml b/.github/workflows/azure-static-web-apps-wonderful-stone-06c70c70f.yml index a79dbc0b..106c89bf 100644 --- a/.github/workflows/azure-static-web-apps-wonderful-stone-06c70c70f.yml +++ b/.github/workflows/azure-static-web-apps-wonderful-stone-06c70c70f.yml @@ -51,7 +51,7 @@ jobs: id: builddeploy-test uses: Azure/static-web-apps-deploy@v1 with: - azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_WONDERFUL_STONE_06c70c70f }} + azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_WONDERFUL_STONE_06C70C70F }} repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) action: "upload" skip_app_build: true