Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix loading on rewards dashboard #1204

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions apps/rewards-dashboard/src/layouts/DashboardLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,11 @@ const ConnectedDashboard = () => {
if (!userInfo) {
return;
}
setTotalUSDSBridged(userInfo.bridged_usds); // TODO: Change to effective_bridged_usds after going live
setUSDSBalance(userInfo.effective_usds_balance);
setKaminoHeld(userInfo.net_usds_supply_in_kamino);
setAccruedRewards(userInfo.accrued_rewards);
console.log(userInfo);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove this log

setTotalUSDSBridged(userInfo.bridged_usds || 0); // TODO: Change to effective_bridged_usds after going live
setUSDSBalance(userInfo.effective_usds_balance || 0);
setKaminoHeld(userInfo.net_usds_supply_in_kamino || 0);
setAccruedRewards(userInfo.accrued_rewards || 0);
}, [userInfo]);
useEffect(() => {
if (!overview) {
Expand Down