I created a leaderboard with a list view that dynamically displays all users in decreasing order based on their point total. The list view shows the position, username, profile image and total points.
The user's position in the list was created with a custom function where the integer displayed is the index in list +1.
How can I display the authenticated user's position in a separate container as an integer?
I've tried updating the page state on page load and creating custom functions, but I have the same problem: I need help to reach the necessary variables (the index in list) from the list view.
I can only see the authenticated user's fields and not the fields of the user's collection itself (I did set a backend query to the top level of the leaderboard page).