Skip to content

Commit

Permalink
Use HA endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbrucker committed Feb 22, 2024
1 parent 644d1d3 commit ccee3df
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/app/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,7 @@ export const githubClientId = '16645067d609075c61e4';
// export const githubClientId = null;
export const googleClientId = '444774972531-atkv3k11o8satjic5m88ldv16beri3rf.apps.googleusercontent.com';
// export const googleClientId = null;
const apiBaseUrls: string[] = [
'https://chia-dashboard-api.foxypool.io/api',
'https://chia-dashboard-api-2.foxypool.io/api',
'https://chia-dashboard-api-3.foxypool.io/api',
]
function randomArrayPosition<T>(array: T[]): T {
return array[Math.floor(Math.random() * array.length)]
}
export const apiBaseUrl = randomArrayPosition(apiBaseUrls)
export const apiBaseUrl = 'https://chia-dashboard-api.foxypool.io/api'
export const requestDiscordGuildPermission = true;

// DEV
Expand Down

0 comments on commit ccee3df

Please sign in to comment.