From dddec91e648ee80ff285e49b94d253099d2c5db8 Mon Sep 17 00:00:00 2001 From: Deepansh Khurana Date: Fri, 13 Sep 2024 03:45:59 +0200 Subject: [PATCH] fix: remove created_at from subsequent refresh of data --- app/view/mod_selector.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/view/mod_selector.R b/app/view/mod_selector.R index 12d43e9..a58cdcb 100644 --- a/app/view/mod_selector.R +++ b/app/view/mod_selector.R @@ -268,7 +268,8 @@ server <- function(id, app_state) { ) ) |> select( id, everything() - ) + ) |> + select(-created_at) }) }, ignoreInit = TRUE)