diff --git a/desktop/flipper-plugin/src/ui/Interactive.tsx b/desktop/flipper-plugin/src/ui/Interactive.tsx index b9e52715e..7216d4cfc 100644 --- a/desktop/flipper-plugin/src/ui/Interactive.tsx +++ b/desktop/flipper-plugin/src/ui/Interactive.tsx @@ -626,6 +626,17 @@ export class Interactive extends React.Component< newCursor = 'row-resize'; } + if ( + this.state.resizingSides?.bottom === bottom && + this.state.resizingSides?.left === left && + this.state.resizingSides?.top === top && + this.state.resizingSides?.right === right && + this.state.cursor === newCursor && + this.state.couldResize === Boolean(newCursor) + ) { + return; + } + const resizingSides = { bottom, left,