Description
In the community app, the list of past challenges does not include other user's taas payments. The example api call used here is below and it does return the taas payments, but this seems to be filtered out in the FE and not shown on the listings page.
https://api.topcoder.com/v5/challenges/?search=taas&startDateEnd=2021-12-07T23%3A59%3A59.999Z&endDateStart=2021-11-07T00%3A00%3A00.000Z&status=Completed&perPage=10&page=1&sortBy=startDate&sortOrder=desc&tracks[]=Dev&tracks[]=Des&tracks[]=DS&tracks[]=QA&types[]=CH&types[]=F2F&types[]=TSK
In the MFE the list includes past payments. The api call used here is the below and we display all the results without any filtering out.
https://api.topcoder.com/v5/challenges/?page=1&perPage=10&types[]=CH&types[]=F2F&types[]=TSK&tracks[]=DES&tracks[]=DEV&tracks[]=DS&tracks[]=QA&search=taas&status=Completed&startDateEnd=2021-12-07T18:29:59.999Z&endDateStart=2021-11-06T18:30:00.000Z&sortBy=updated&sortOrder=desc&totalPrizesFrom=0&totalPrizesTo=10000&isLightweight=true
expected: both the listings pages must be consistent