Skip to content

Commit 6687de8

Browse files
committed
lint
1 parent da2e369 commit 6687de8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dashboard/Data/Playground/Playground.react.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ export default function Playground() {
192192
const [, setCurrentMenu] = useState(null); // Track which menu is currently open
193193
const [, setForceUpdate] = useState({}); // Force re-render for unsaved changes detection
194194
const renamingInputRef = useRef(null);
195-
195+
196196
// Drag and drop state
197197
const [draggedTabId, setDraggedTabId] = useState(null);
198198
const [dragOverTabId, setDragOverTabId] = useState(null);
@@ -486,7 +486,7 @@ export default function Playground() {
486486

487487
const handleDrop = useCallback(async (e, targetTabId) => {
488488
e.preventDefault();
489-
489+
490490
if (!draggedTabId || draggedTabId === targetTabId) {
491491
setDraggedTabId(null);
492492
setDragOverTabId(null);

0 commit comments

Comments
 (0)