Skip to content

Commit

Permalink
Nav Management: Fix error on submission (#2623)
Browse files Browse the repository at this point in the history
  • Loading branch information
onnovisser authored Feb 10, 2025
1 parent 4d16984 commit 93b12d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion centrifuge-app/src/components/DebugFlags/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export const flagsConfig = {
type: 'checkbox',
},
showDashboard: {
default: true,
default: false,
type: 'checkbox',
alwaysShow: true,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export function NavManagementAssetTable({ poolId }: { poolId: string }) {
: {
assetId: l.id,
name: nftMetas[i]?.name ?? '',
quantity: (l as ActiveLoan).presentValue.toString(),
quantity: (l as ActiveLoan).presentValue?.toString() ?? '0',
price: CurrencyBalance.fromFloat(1, pool.currency.decimals).toString(),
}
),
Expand Down

0 comments on commit 93b12d1

Please sign in to comment.