For some reason, 'tab-2961-2' appears at the bottom of the tab.
Is there a way to hide it?
Below the code used:
library(shiny)
library(shinycssloaders)
library(shinythemes)
ui = fluidPage(
navbarPage("My Awesome App",
theme = shinythemes::shinytheme("cyborg"),
tabPanel("Tab 1"),
withSpinner(plotOutput("plot1"))
)
)
server = function(input, output) {
output$plot1 = renderPlot({plot(mtcars$wt, mtcars$mpg)
})
}
shinyApp(ui = ui, server = server)