File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/dashboard/Data/Playground Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ export default function Playground() {
192
192
const [ , setCurrentMenu ] = useState ( null ) ; // Track which menu is currently open
193
193
const [ , setForceUpdate ] = useState ( { } ) ; // Force re-render for unsaved changes detection
194
194
const renamingInputRef = useRef ( null ) ;
195
-
195
+
196
196
// Drag and drop state
197
197
const [ draggedTabId , setDraggedTabId ] = useState ( null ) ;
198
198
const [ dragOverTabId , setDragOverTabId ] = useState ( null ) ;
@@ -486,7 +486,7 @@ export default function Playground() {
486
486
487
487
const handleDrop = useCallback ( async ( e , targetTabId ) => {
488
488
e . preventDefault ( ) ;
489
-
489
+
490
490
if ( ! draggedTabId || draggedTabId === targetTabId ) {
491
491
setDraggedTabId ( null ) ;
492
492
setDragOverTabId ( null ) ;
You can’t perform that action at this time.
0 commit comments