From 5a9ffc9e9b7a55bff98f7fb62b606852b121d9f5 Mon Sep 17 00:00:00 2001 From: Jacqueline Buros Date: Wed, 1 May 2024 13:59:06 -0400 Subject: [PATCH] fix issue where trial_id filter is provided --- R/geco_filters.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/R/geco_filters.R b/R/geco_filters.R index 69397b3..92fd9e7 100644 --- a/R/geco_filters.R +++ b/R/geco_filters.R @@ -136,5 +136,6 @@ updates <- rlang::list2(...) updates <- .check_format(updates) filter %>% - purrr::list_merge(!!!updates) + purrr::list_merge(!!!updates) %>% + purrr::map_depth(2, unique) }