move api call error messages to console warning
This commit is contained in:
parent
1f1d3a0e20
commit
99b8a4f812
|
@ -416,7 +416,7 @@ const mangoStore = create<MangoStore>()(
|
|||
set((state) => {
|
||||
state.mangoAccount.stats.interestTotals.loading = false
|
||||
})
|
||||
notify({
|
||||
console.error({
|
||||
title: 'Failed to load account interest totals',
|
||||
type: 'error',
|
||||
})
|
||||
|
@ -456,10 +456,10 @@ const mangoStore = create<MangoStore>()(
|
|||
state.mangoAccount.stats.performance.loading = false
|
||||
})
|
||||
console.error('Failed to load account performance data', e)
|
||||
notify({
|
||||
title: 'Failed to load account performance data',
|
||||
type: 'error',
|
||||
})
|
||||
// notify({
|
||||
// title: 'Failed to load account performance data',
|
||||
// type: 'error',
|
||||
// })
|
||||
}
|
||||
},
|
||||
fetchActivityFeed: async (
|
||||
|
|
Loading…
Reference in New Issue