Skip to content

Commit

Permalink
revert removal of try call
Browse files Browse the repository at this point in the history
  • Loading branch information
gogonzo committed Oct 24, 2024
1 parent 37e802c commit 9fb1ddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/module_data_summary.R
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ srv_data_summary <- function(id, teal_data) {
})

output$table <- renderUI({
summary_table_out <- summary_table()
summary_table_out <- try(summary_table(), silent = TRUE)
if (inherits(summary_table_out, "try-error")) {
# Ignore silent shiny error
if (!inherits(attr(summary_table_out, "condition"), "shiny.silent.error")) {
Expand Down

0 comments on commit 9fb1ddb

Please sign in to comment.