Skip to content

Commit f2c0f45

Browse files
fix: remove unused variable
1 parent d544a07 commit f2c0f45

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/taxonomy/tag-list/TagListTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const TagListTable = ({ taxonomyId, maxDepth }: TagListTableProps) => {
4646
const [toast, setToast] = useState({ show: false, message: '', variant: 'success' });
4747
const [tagTree, setTagTree] = useState<TagTree | null>(null);
4848
const [isCreatingTopTag, setIsCreatingTopTag] = useState(false);
49-
const [_, setActiveActionMenuRowId] = useState<RowId | null>(null);
49+
const [, setActiveActionMenuRowId] = useState<RowId | null>(null);
5050
const [draftError, setDraftError] = useState('');
5151
const treeData = (tagTree?.getAllAsDeepCopy() || []) as unknown as TreeRowData[];
5252
const hasOpenDraft = isCreatingTopTag || creatingParentId !== null || editingRowId !== null;

0 commit comments

Comments
 (0)