Skip to content

Commit

Permalink
passing ... to shinyApp when auth0_disable = TRUE
Browse files Browse the repository at this point in the history
  • Loading branch information
williamorim committed Feb 15, 2024
1 parent 19d90e7 commit 2850668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/shiny.R
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 2850668

Please sign in to comment.