fix: correct TypeScript destructuring for unused vars

- Use rename syntax (filterCategory: _filterCategory) instead of direct rename
- Fix FavoritesBlock layout destructuring

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
CCS Admin 2026-02-15 21:52:04 +00:00
parent 12c8461108
commit 7b486292a0
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ export function FAQBlock({
subtitle,
displayMode,
selectedFaqs,
_filterCategory,
filterCategory: _filterCategory,
layout = 'accordion',
expandFirst = false,
showSchema = true,

View file

@ -12,7 +12,7 @@ export async function FavoritesBlock({
displayMode,
selectedFavorites,
filterCategory,
_layout = 'grid',
layout: _layout = 'grid',
columns = 3,
limit = 12,
showPrice = true,