File tree 1 file changed +7
-2
lines changed
site/src/pages/UserSettingsPage/ExternalAuthPage
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ 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" ;
23
+ import { Avatar , ExternalAvatar } from "components/Avatar/Avatar" ;
24
24
import { AvatarData } from "components/AvatarData/AvatarData" ;
25
25
import { Loader } from "components/Loader/Loader" ;
26
26
import {
@@ -152,7 +152,12 @@ 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
+ < ExternalAvatar
156
+ src = { app . display_icon }
157
+ size = "sm"
158
+ variant = "square"
159
+ fitImage
160
+ />
156
161
) : (
157
162
< Avatar > { name } </ Avatar >
158
163
) ;
You can’t perform that action at this time.
0 commit comments