Skip to content

Commit

Permalink
feat: use c() instead of teal.code::join()
Browse files Browse the repository at this point in the history
  • Loading branch information
averissimo committed Nov 4, 2024
1 parent f5fd36c commit afb209a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/tm_a_mmrm.R
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ srv_mmrm <- function(id,

all_q <- reactive({
if (!is.null(plot_q()) && !is.null(table_q())) {
teal.code::join(plot_q(), table_q())
c(plot_q(), table_q())
} else if (!is.null(plot_q())) {
plot_q()
} else {
Expand Down

0 comments on commit afb209a

Please sign in to comment.