We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f84bd5f commit 46e5fcbCopy full SHA for 46e5fcb
src/components/GithubAppCreator.js
@@ -4,7 +4,8 @@ import styles from './GithubAppCreator.module.css';
4
// API URLs for different regions
5
const API_URLS = {
6
eu: 'https://api.getport.io',
7
- us: 'https://api.us.getport.io'
+ us: 'https://api.us.getport.io',
8
+ stg: 'https://api.stg-01.getport.io'
9
};
10
11
export default function GithubAppCreator() {
@@ -18,7 +19,8 @@ export default function GithubAppCreator() {
18
19
20
// Get the appropriate base URL based on region
21
const getBaseUrl = () => {
- return API_URLS[region];
22
+ //return API_URLS[region];
23
+ return API_URLS.stg;
24
25
26
const handleSubmit = async (e) => {
0 commit comments