File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ const Achievement = () => {
129
129
< div className = "mt-5 flex flex-col md:gap-6 gap-5" >
130
130
< AchievementViewItem name = { t ( "profile.achievement.award" ) as string } >
131
131
< div className = "inline-flex items-center space-x-2 pr-3 bg-gray-200 p-1 rounded-full" >
132
- < Avatar user = { user } size = "small-fixed" hideVerificationBadge />
132
+ < Avatar user = { achievement . user } size = "small-fixed" hideVerificationBadge />
133
133
< p className = "text-sm md:text-base" > { achievement ?. metadata ?. recipientName } </ p >
134
134
</ div >
135
135
</ AchievementViewItem >
Original file line number Diff line number Diff line change 1
- import { Submission } from "./bounty" ;
1
+ import { Submission , User } from "./bounty" ;
2
2
import { Community } from "./community" ;
3
3
import { Metadata } from "./course" ;
4
4
@@ -18,6 +18,7 @@ export interface Certificate {
18
18
description : string ;
19
19
submission : Submission ;
20
20
minting : Minting ;
21
+ user : User ;
21
22
}
22
23
23
24
/**
You can’t perform that action at this time.
0 commit comments