Remove unused destructured variable and document the convention

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-04-21 10:51:45 +04:00
parent b29f51c303
commit d3333fd137
2 changed files with 20 additions and 2 deletions

View File

@@ -154,8 +154,8 @@ export function CategorySection({ categoryKey, onDelete }: CategorySectionProps)
const [updateCategory, isUpdating]
= useMutation<CategorySectionUpdateMutation>(updateCategoryMutation);
const [moveCookie, _isMoving]
= useMutation<CategorySectionMoveCookieMutation>(moveCookieMutation);
const [moveCookie] =
useMutation<CategorySectionMoveCookieMutation>(moveCookieMutation);
const [isEditingCategory, setIsEditingCategory] = useState(false);
const [editingCookieIndex, setEditingCookieIndex] = useState<number | null>(null);