mirror of
https://github.com/complexcaresolutions/frontend.blogwoman.de.git
synced 2026-03-17 19:44:00 +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,
|
subtitle,
|
||||||
displayMode,
|
displayMode,
|
||||||
selectedFaqs,
|
selectedFaqs,
|
||||||
_filterCategory,
|
filterCategory: _filterCategory,
|
||||||
layout = 'accordion',
|
layout = 'accordion',
|
||||||
expandFirst = false,
|
expandFirst = false,
|
||||||
showSchema = true,
|
showSchema = true,
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ export async function FavoritesBlock({
|
||||||
displayMode,
|
displayMode,
|
||||||
selectedFavorites,
|
selectedFavorites,
|
||||||
filterCategory,
|
filterCategory,
|
||||||
_layout = 'grid',
|
layout: _layout = 'grid',
|
||||||
columns = 3,
|
columns = 3,
|
||||||
limit = 12,
|
limit = 12,
|
||||||
showPrice = true,
|
showPrice = true,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue