Describe your issue
On the Launchpad page at app.mulearn.org/dashboard/launchpad, the page displays "No job invites or interviews available" even though the API is successfully fetching invite data. The browser console reveals that the API returns an Object with invite data but after the frontend filter logic is applied the result becomes an empty Array(0). This means the filter logic on the frontend is incorrectly removing all valid job invites from the results, causing the Launchpad page to always appear empty for users regardless of whether they actually have job invites or not.
Steps to reproduce
Log in to https://app.mulearn.org
Press F12 to open DevTools
Click on the Console tab
Click on Launchpad in the left sidebar
Observe the console logs showing Fetched invites: Object and Filtered invites: Array(0)
Observe the Launchpad page showing "No job invites or interviews available"
What was the expected result?
The frontend filter logic should correctly process the API response and display all valid job invites on the Launchpad page. The console should show a non-empty array after filtering if the API returns invite data.
Actual Behavior
The console shows:
Fetched invites: Object — API returns invite data successfully
Filtered invites: Array(0) — filter logic removes all invites incorrectly
The Launchpad page displays "No job invites or interviews available" even though the API has returned data, suggesting the filter logic is either checking the wrong property, comparing incorrect values or receiving data in an unexpected format.
Put here any screenshots or videos (optional)
Would you like to work on this issue?
Yes
Describe your issue
On the Launchpad page at app.mulearn.org/dashboard/launchpad, the page displays "No job invites or interviews available" even though the API is successfully fetching invite data. The browser console reveals that the API returns an Object with invite data but after the frontend filter logic is applied the result becomes an empty Array(0). This means the filter logic on the frontend is incorrectly removing all valid job invites from the results, causing the Launchpad page to always appear empty for users regardless of whether they actually have job invites or not.
Steps to reproduce
Log in to https://app.mulearn.org
Press F12 to open DevTools
Click on the Console tab
Click on Launchpad in the left sidebar
Observe the console logs showing Fetched invites: Object and Filtered invites: Array(0)
Observe the Launchpad page showing "No job invites or interviews available"
What was the expected result?
The frontend filter logic should correctly process the API response and display all valid job invites on the Launchpad page. The console should show a non-empty array after filtering if the API returns invite data.
Actual Behavior
The console shows:
Fetched invites: Object — API returns invite data successfully
Filtered invites: Array(0) — filter logic removes all invites incorrectly
The Launchpad page displays "No job invites or interviews available" even though the API has returned data, suggesting the filter logic is either checking the wrong property, comparing incorrect values or receiving data in an unexpected format.
Put here any screenshots or videos (optional)
Would you like to work on this issue?
Yes