From 2850668745608113d240bcc73f79aca43700e6a9 Mon Sep 17 00:00:00 2001 From: williamorim Date: Thu, 15 Feb 2024 16:35:59 -0300 Subject: [PATCH] passing ... to shinyApp when auth0_disable = TRUE --- R/shiny.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/shiny.R b/R/shiny.R index 9f83197..e8d0ac1 100644 --- a/R/shiny.R +++ b/R/shiny.R @@ -120,7 +120,7 @@ shinyAppAuth0 <- function(ui, server, config_file = NULL, ...) { disable <- getOption("auth0_disable") if (!is.null(disable) && disable) { - shiny::shinyApp(ui, server) + shiny::shinyApp(ui, server, ...) } else { if (is.null(config_file)) { config_file <- auth0_find_config_file()