Skip to content

Commit 85069ed

Browse files
committed
Fix linting errors
1 parent 1e70605 commit 85069ed

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

packages/instant-meilisearch/src/cache/first-facets-distribution.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@ export async function initFacetDistribution(
3333
// Used to show the facets when `placeholderSearch` is set to true
3434
// Used to fill the missing facet values when `keepZeroFacets` is set to true
3535
if (!initialFacetDistribution[searchContext.indexUid]) {
36-
initialFacetDistribution[
37-
searchContext.indexUid
38-
] = await getIndexFacetDistribution(searchResolver, searchContext)
36+
initialFacetDistribution[searchContext.indexUid] =
37+
await getIndexFacetDistribution(searchResolver, searchContext)
3938
}
4039

4140
return initialFacetDistribution

packages/instant-meilisearch/src/cache/init-facets-distribution.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@ export async function initFacetDistribution(
3333
// Used to show the facets when `placeholderSearch` is set to true
3434
// Used to fill the missing facet values when `keepZeroFacets` is set to true
3535
if (!initialFacetDistribution[searchContext.indexUid]) {
36-
initialFacetDistribution[
37-
searchContext.indexUid
38-
] = await getIndexFacetDistribution(searchResolver, searchContext)
36+
initialFacetDistribution[searchContext.indexUid] =
37+
await getIndexFacetDistribution(searchResolver, searchContext)
3938
}
4039

4140
return initialFacetDistribution

0 commit comments

Comments
 (0)