diff --git a/meilisearch-http/src/index/search.rs b/meilisearch-http/src/index/search.rs
index 1c9f9899a..50d163898 100644
--- a/meilisearch-http/src/index/search.rs
+++ b/meilisearch-http/src/index/search.rs
@@ -74,15 +74,9 @@ impl Index {
search.limit(query.limit);
search.offset(query.offset.unwrap_or_default());
-<<<<<<< HEAD
if let Some(ref filter) = query.filter {
if let Some(facets) = parse_facets(filter, self, &rtxn)? {
- search.facet_condition(facets);
-=======
- if let Some(ref facets) = query.facet_filters {
- if let Some(facets) = parse_facets(facets, self, &rtxn)? {
search.filter(facets);
->>>>>>> 562cc32 (Add changes according to milli update)
}
}
@@ -282,38 +276,6 @@ impl Matcher for MatchingWords {
}
}
-<<<<<<< HEAD
-=======
-fn parse_facets_array(
- txn: &RoTxn,
- index: &Index,
- arr: &[Value],
-) -> anyhow::Result