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 @@ -940,7 +940,7 @@ export const exchangeExternalAuthDevice = async (
940
940
} ;
941
941
942
942
export const getUserExternalAuthProviders = async (
943
- ) : Promise < TypesGen . UserExternalAuthResponse > => {
943
+ ) : Promise < TypesGen . ListUserExternalAuthResponse > => {
944
944
const resp = await axios . get ( `/api/v2/external-auth` ) ;
945
945
return resp . data ;
946
946
} ;
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