summaryrefslogtreecommitdiff
path: root/R/app.R
diff options
context:
space:
mode:
Diffstat (limited to 'R/app.R')
-rw-r--r--R/app.R6
1 files changed, 3 insertions, 3 deletions
diff --git a/R/app.R b/R/app.R
index 1bf3e93..feb052f 100644
--- a/R/app.R
+++ b/R/app.R
@@ -2,8 +2,8 @@
#'
#' @export
app <- function() {
- if (!requireNamespace("shiny", quietly=TRUE))
- stop("The package 'shiny' must be installed to launch the Rnaught web application.")
+ if (!requireNamespace("shiny", quietly = TRUE))
+ stop("The package 'shiny' must be installed to launch the Rnaught web application.")
- shiny::shinyApp(ui(), server)
+ shiny::shinyApp(ui, server)
}