You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name: "Promote Acme at your campus and earn $500",
23
32
type: "performance",
24
33
endsAt: newDate(),
34
+
rewardAmount: 10000,
25
35
description:
26
36
"How **does** it work?\n\nGet a group _together_ of at least 15 other people interested in trying out [Acme](https://dub.co). Then, during the event, take a photo of the group using Acme. When submitting, provide any links to the event or photos. Once confirmed, we'll create a one-time commission for you.",
27
37
},
@@ -36,6 +46,7 @@ export default function NewBountyAvailable({
36
46
name: string;
37
47
type: "performance"|"submission";
38
48
endsAt: Date|null;
49
+
rewardAmount: number|null;
39
50
description: string|null;
40
51
};
41
52
program: {
@@ -44,6 +55,18 @@ export default function NewBountyAvailable({
44
55
};
45
56
email: string;
46
57
}){
58
+
constformattedRewardAmount=
59
+
bounty.rewardAmount!=null
60
+
? currencyFormatter(bounty.rewardAmount,{
61
+
trailingZeroDisplay: "stripIfInteger",
62
+
})
63
+
: null;
64
+
65
+
consticonSizeClassByIcon: Record<Icon,string>={
66
+
calendar: "h-4.5 w-4.5",
67
+
gift: "h-4.5 w-4.5",
68
+
};
69
+
47
70
return(
48
71
<Html>
49
72
<Head/>
@@ -68,10 +91,41 @@ export default function NewBountyAvailable({
0 commit comments