File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed
packages/builder/src/components/grants Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -196,6 +196,18 @@ export default function ApplicationCard({
196
196
return null ;
197
197
}
198
198
199
+ const applicationStartTime = new Date ( props . round . applicationsStartTime ) ;
200
+ const showCheckerLink =
201
+ applicationStartTime >= new Date ( "2024-12-01T00:00:00Z" ) ;
202
+
203
+ const applicationViewLink = showCheckerLink
204
+ ? `https://beta.checker.gitcoin.co/view/application/${ applicationData . chainId } -${ applicationData . roundID } -${ applicationData . application . id } `
205
+ : roundApplicationViewPath (
206
+ applicationData . chainId . toString ( ) ,
207
+ applicationData . roundID ,
208
+ applicationData . application . metadataCid || ""
209
+ ) ;
210
+
199
211
return (
200
212
< Box
201
213
p = { 2 }
@@ -241,13 +253,7 @@ export default function ApplicationCard({
241
253
</ a >
242
254
</ p >
243
255
) }
244
- < Link
245
- to = { roundApplicationViewPath (
246
- applicationData . chainId . toString ( ) ,
247
- applicationData . roundID ,
248
- applicationData . application . metadataCid || ""
249
- ) }
250
- >
256
+ < Link to = { applicationViewLink } target = "_blank" >
251
257
< Button
252
258
backgroundColor = "purple.100"
253
259
color = "purple.600"
You can’t perform that action at this time.
0 commit comments