Skip to content

Commit

Permalink
GUI Storage size enhancements: do not display error message (console …
Browse files Browse the repository at this point in the history
…output fix)
  • Loading branch information
rodichenko committed Jul 28, 2023
1 parent bd1b51b commit 979fadb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions client/src/components/special/storage-size/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,7 @@ class StorageSize extends React.PureComponent {
const disclaimer = preferences.storageSizeRequestDisclaimer || REFRESH_REQUESTED_MESSAGE;
message.info(disclaimer, 7);
} catch (e) {
console.warn(e.message);
message.error('Error re-indexing storage', 5);
message.error(e.message, 5);
}
}
};
Expand Down

0 comments on commit 979fadb

Please sign in to comment.