Skip to content

Commit

Permalink
add missing regions to link command (#10432)
Browse files Browse the repository at this point in the history
  • Loading branch information
FredKSchott authored Mar 13, 2024
1 parent 9ef3106 commit 4e24628
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/empty-ants-crash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@astrojs/db": patch
---

Add all regions to the link command
4 changes: 4 additions & 0 deletions packages/db/src/core/cli/commands/link/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,10 @@ export async function promptNewProjectRegion(): Promise<string> {
choices: [
{ title: 'North America (East)', value: 'NorthAmericaEast' },
{ title: 'North America (West)', value: 'NorthAmericaWest' },
{ title: 'Europe (Amsterdam)', value: 'EuropeCentral' },
{ title: 'South America (Brazil)', value: 'SouthAmericaEast' },
{ title: 'Asia (India)', value: 'AsiaSouth' },
{ title: 'Asia (Japan)', value: 'AsiaNorthEast' },
],
initial: 0,
});
Expand Down

0 comments on commit 4e24628

Please sign in to comment.