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