Fix interest filter width

This commit is contained in:
MartinBraquet
2026-02-28 01:48:01 +01:00
parent 8548b85d03
commit 8b283cc5ce
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ android {
applicationId "com.compassconnections.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 44
versionCode 45
versionName "1.10.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {

View File

@@ -64,7 +64,7 @@ export function InterestFilter(props: {
selected={filters[label] ?? []}
choices={sortedChoices as any}
onChange={(c) => updateFilter({[label]: c})}
optionsClassName={'w-[200px] sm:w-[400px]'}
optionsClassName={''}
/>
)
}