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]) => {
|
Object.entries(this.subListSizes).forEach(([id, size]) => {
|
||||||
const handle = this.resizer.forHandleWithId(id);
|
const handle = this.resizer.forHandleWithId(id);
|
||||||
if (handle) {
|
if (handle) {
|
||||||
try {
|
handle.resize(size);
|
||||||
handle.resize(size);
|
|
||||||
} catch(_e) {}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user