Update regions for pop map and other small tweaks#1046
Merged
mattdjenkinson merged 5 commits intomainfrom Mar 4, 2026
Merged
Conversation
yahyafakhroji
approved these changes
Mar 4, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR applies feedback and fixes from the AI Edge work:
What changed
POP map region coordinates
Replaced the generic GCP/AWS-style region list in
region-coordinates.tswith Datum’s actual edge region codes (e.g.ae-north-1,au-east-1,us-central-1,gb-south-1). The Active POPs map now uses coordinates that match the regions the platform reports, so markers render in the right places.Simplified AI Edge create flow
Creating an AI Edge no longer uses the task queue or “Creating AI Edge…” background task. The flow is now synchronous: submit → API call → invalidate list → navigate to detail (or show a toast on error). This avoids task-queue edge cases and gives immediate feedback. The dialog stays open until the request completes.
“View” row action on AI Edge list
Added a “View” action to each row on the AI Edge list so users can open the detail page from the table (alongside the existing Delete action).
Project danger card copy
Removed the line “Make sure you have made a backup if you want to keep your data.” from the project delete danger card to simplify the warning.
Session manager refresh hook
The session refresh hook no longer throws when a hook is already registered. Registering again now replaces the previous hook, which avoids errors in dev when the server module is re-executed (e.g. HMR).