Skip to content

Commit

Permalink
fix(dedicated.ip): fix ipv4 vrack order on us
Browse files Browse the repository at this point in the history
ref: PRB0041819

Signed-off-by: Quentin Pavy <[email protected]>
  • Loading branch information
Quentin Pavy committed Nov 25, 2024
1 parent 398cee7 commit a452a23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default class IpAgoraOrder {
const [region] = productRegionName?.split('-') || [];
productToOrder.configuration.push({
label: 'region',
value: region?.trim()?.toLowerCase(),
value: region === 'USA' ? 'us' : region?.trim()?.toLowerCase(),
});
}

Expand Down

0 comments on commit a452a23

Please sign in to comment.