I\'m looking to port some older Shiny apps to use Shiny Modules, but running into trouble trying to port over my reactive expressions.
According to the documentation:>
Drop the parens after car_data:
df <- callModule(linkedScatter, "scatters", car_data, left = reactive(c("cty", "hwy")), right = reactive(c("drv", "hwy")) )
The module seems to want "unresolved" reactives. The parentheses "resolves" them.