File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
pages/UserExternalAuthSettingsPage Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -938,7 +938,7 @@ export const exchangeExternalAuthDevice = async (
938
938
} ;
939
939
940
940
export const getUserExternalAuthProviders = async (
941
- ) : Promise < TypesGen . UserExternalAuthResponse > => {
941
+ ) : Promise < TypesGen . ListUserExternalAuthResponse > => {
942
942
const resp = await axios . get ( `/api/v2/external-auth` ) ;
943
943
return resp . data ;
944
944
} ;
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ import TableHead from "@mui/material/TableHead";
7
7
import TableRow from "@mui/material/TableRow" ;
8
8
import type {
9
9
ExternalAuthConfig ,
10
+ ListUserExternalAuthResponse ,
10
11
ExternalAuthLinkProvider ,
11
- UserExternalAuthResponse ,
12
12
} from "api/typesGenerated" ;
13
13
import { Alert } from "components/Alert/Alert" ;
14
14
import { ErrorAlert } from "components/Alert/ErrorAlert" ;
@@ -31,7 +31,7 @@ import {
31
31
export type UserExternalAuthSettingsPageViewProps = {
32
32
isLoading : boolean ;
33
33
getAuthsError ?: unknown ;
34
- auths ?: UserExternalAuthResponse ;
34
+ auths ?: ListUserExternalAuthResponse ;
35
35
onUnlinkExternalAuth : ( provider : string ) => void ;
36
36
onValidateExternalAuth : ( provider : string ) => void ;
37
37
} ;
You can’t perform that action at this time.
0 commit comments