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 ea2f65b commit cc7cd52Copy full SHA for cc7cd52
site/src/api/api.ts
@@ -939,11 +939,11 @@ export const exchangeExternalAuthDevice = async (
939
return resp.data;
940
};
941
942
-export const getUserExternalAuthProviders = async (
943
-): Promise<TypesGen.ListUserExternalAuthResponse> => {
944
- const resp = await axios.get(`/api/v2/external-auth`);
945
- return resp.data;
946
-};
+export const getUserExternalAuthProviders =
+ async (): Promise<TypesGen.ListUserExternalAuthResponse> => {
+ const resp = await axios.get(`/api/v2/external-auth`);
+ return resp.data;
+ };
947
948
export const unlinkExternalAuthProvider = async (
949
provider: string,
0 commit comments