File tree 1 file changed +3
-3
lines changed
site/src/pages/UserSettingsPage/ExternalAuthPage
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ import type {
20
20
ListUserExternalAuthResponse ,
21
21
} from "api/typesGenerated" ;
22
22
import { ErrorAlert } from "components/Alert/ErrorAlert" ;
23
- import { Avatar } from "components/Avatar/Avatar" ;
24
23
import { AvatarData } from "components/AvatarData/AvatarData" ;
24
+ import { ExternalImage } from "components/ExternalImage/ExternalImage" ;
25
25
import { Loader } from "components/Loader/Loader" ;
26
26
import {
27
27
MoreMenu ,
@@ -152,9 +152,9 @@ const ExternalAuthRow: FC<ExternalAuthRowProps> = ({
152
152
: ( link ?. authenticated ?? false ) ;
153
153
154
154
let avatar = app . display_icon ? (
155
- < Avatar src = { app . display_icon } variant = "square" fitImage size = "sm" />
155
+ < ExternalImage src = { app . display_icon } variant = "square" fitImage size = "sm" />
156
156
) : (
157
- < Avatar > { name } </ Avatar >
157
+ < ExternalImage > { name } </ ExternalImage >
158
158
) ;
159
159
160
160
// If the link is authenticated and has a refresh token, show that it will automatically
You can’t perform that action at this time.
0 commit comments