Skip to content

Commit 0989ac2

Browse files
committed
feat: use c() instead of teal.code::join()
1 parent 7805a1b commit 0989ac2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

R/tm_g_distribution.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1214,15 +1214,15 @@ srv_distribution <- function(id,
12141214
# wrapped in if since could lead into validate error - we do want to continue
12151215
test_r_qenv_out <- try(test_q(), silent = TRUE)
12161216
if (!inherits(test_r_qenv_out, c("try-error", "error"))) {
1217-
qenv_final <- teal.code::join(qenv_final, test_q())
1217+
qenv_final <- c(qenv_final, test_q())
12181218
}
12191219

12201220
qenv_final <- if (tab == "Histogram") {
12211221
req(dist_q())
1222-
teal.code::join(qenv_final, dist_q())
1222+
c(qenv_final, dist_q())
12231223
} else if (tab == "QQplot") {
12241224
req(qq_q())
1225-
teal.code::join(qenv_final, qq_q())
1225+
c(qenv_final, qq_q())
12261226
}
12271227
qenv_final
12281228
})

0 commit comments

Comments
 (0)