Skip to content

Commit 1f30c6d

Browse files
committed
eliminate non-existant function
1 parent 9ae13f5 commit 1f30c6d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

compose/neurosynth-frontend/src/pages/Annotations/components/EditAnnotationsHotTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ const AnnotationsHotTable: React.FC<{ annotationId?: string }> = React.memo((pro
186186
};
187187
});
188188

189-
hotTableRef.current?.hotInstance?.getPlugin('manualColumnMove').clearMoves();
189+
// Avoid leaving drag artifacts; Handsontable plugin manages its own state
190190
};
191191

192192
/**

compose/neurosynth-frontend/src/pages/Study/components/EditStudyAnnotationsHotTable.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ const EditStudyAnnotationsHotTable: React.FC<{ readonly?: boolean }> = ({ readon
122122
if (to >= noteKeys.length) to = noteKeys.length - 1;
123123

124124
reorderAnnotationColumns(from, to);
125-
hotTableRef.current?.hotInstance?.getPlugin('manualColumnMove').clearMoves();
126125
};
127126

128127
const memoizedData = useMemo(() => {

0 commit comments

Comments
 (0)