Skip to content

Commit

Permalink
fix: remove created_at from subsequent refresh of data
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepanshKhurana authored Sep 13, 2024
1 parent 4887b96 commit dddec91
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/view/mod_selector.R
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,8 @@ server <- function(id, app_state) {
)
) |> select(
id, everything()
)
) |>
select(-created_at)

Check warning on line 272 in app/view/mod_selector.R

View workflow job for this annotation

GitHub Actions / Run linters and tests

file=app/view/mod_selector.R,line=272,col=13,[indentation_linter] Indentation should be 10 spaces but is 13 spaces.
})

}, ignoreInit = TRUE)
Expand Down

0 comments on commit dddec91

Please sign in to comment.