summaryrefslogtreecommitdiff
path: root/R/app.R
diff options
context:
space:
mode:
authorNaeem Model <me@nmode.ca>2023-06-27 03:40:33 +0000
committerNaeem Model <me@nmode.ca>2023-06-27 03:40:33 +0000
commit18358add05e58e466ba7098f771e20d8d0599d0e (patch)
tree410fbf865ee68b1412dd7d773b4b7da3d45ed137 /R/app.R
parent6caff1be02042720e8f362573533914a975d4e1a (diff)
Remove 'shinyBS' dependency
Diffstat (limited to 'R/app.R')
-rw-r--r--R/app.R2
1 files changed, 0 insertions, 2 deletions
diff --git a/R/app.R b/R/app.R
index 64b5d2a..1bf3e93 100644
--- a/R/app.R
+++ b/R/app.R
@@ -4,8 +4,6 @@
app <- function() {
if (!requireNamespace("shiny", quietly=TRUE))
stop("The package 'shiny' must be installed to launch the Rnaught web application.")
- if (!requireNamespace("shinyBS", quietly=TRUE))
- stop("The package 'shinyBS' must be installed to launch the Rnaught web application.")
shiny::shinyApp(ui(), server)
}