mirror of
https://github.com/complexcaresolutions/frontend.blogwoman.de.git
synced 2026-03-17 15:04:01 +00:00
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:
parent
12c8461108
commit
7b486292a0
2 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@ export function FAQBlock({
|
|||
subtitle,
|
||||
displayMode,
|
||||
selectedFaqs,
|
||||
_filterCategory,
|
||||
filterCategory: _filterCategory,
|
||||
layout = 'accordion',
|
||||
expandFirst = false,
|
||||
showSchema = true,
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ export async function FavoritesBlock({
|
|||
displayMode,
|
||||
selectedFavorites,
|
||||
filterCategory,
|
||||
_layout = 'grid',
|
||||
layout: _layout = 'grid',
|
||||
columns = 3,
|
||||
limit = 12,
|
||||
showPrice = true,
|
||||
|
|
|
|||
Loading…
Reference in a new issue