In the main server file of the shiny app, input$loadDat is split up into multiple observeEvents and this has lead to redundant code (e.g., checking for project name in each observe event). Unnecessary redundancy such as this is likely slowing down the shiny app.
- Review each
observeEvent(input$loadDat)... in the server file
- Try to consolidate this code and eliminate redundant checks
In the main server file of the shiny app, input$loadDat is split up into multiple observeEvents and this has lead to redundant code (e.g., checking for project name in each observe event). Unnecessary redundancy such as this is likely slowing down the shiny app.
observeEvent(input$loadDat)...in the server file