diff --git a/src/components/article/article-filter-bar.tsx b/src/components/article/article-filter-bar.tsx
index 6731931..12462a3 100644
--- a/src/components/article/article-filter-bar.tsx
+++ b/src/components/article/article-filter-bar.tsx
@@ -54,7 +54,7 @@ function ArticleFilterBar({
<>
@@ -70,35 +70,37 @@ function ArticleFilterBar({
placeholder="Artikel Suche..."
/>
- {
- onFilterChange({
- category: category?.length ? category : undefined,
- });
- }}
- buttonProps={{
- size: "sm",
- }}
- />
- {
- onFilterChange({
- sort: currentValue?.length ? currentValue : undefined,
- });
- }}
- className="w-full max-w-64"
- messageUi={{
- selectIcon: FilterIcon,
- select: "Sortieren",
- }}
- buttonProps={{
- size: "sm",
- }}
- />
+
+ {
+ onFilterChange({
+ category: category?.length ? category : undefined,
+ });
+ }}
+ buttonProps={{
+ size: "sm",
+ }}
+ />
+ {
+ onFilterChange({
+ sort: currentValue?.length ? currentValue : undefined,
+ });
+ }}
+ className="w-full"
+ messageUi={{
+ selectIcon: FilterIcon,
+ select: "Sortieren",
+ }}
+ buttonProps={{
+ size: "sm",
+ }}
+ />
+
>
);
diff --git a/src/components/combobox.tsx b/src/components/combobox.tsx
index 1cedcf0..b7534cd 100644
--- a/src/components/combobox.tsx
+++ b/src/components/combobox.tsx
@@ -121,9 +121,6 @@ export function Combobox({
{item?.Icon && }
{item.label}
- {/*
- {value === item.value && "ausgewählt"}
- */}