remove try/catch as the error is already prevented inside resize
This commit is contained in:
@@ -166,9 +166,7 @@ module.exports = React.createClass({
|
||||
Object.entries(this.subListSizes).forEach(([id, size]) => {
|
||||
const handle = this.resizer.forHandleWithId(id);
|
||||
if (handle) {
|
||||
try {
|
||||
handle.resize(size);
|
||||
} catch(_e) {}
|
||||
handle.resize(size);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user