From b24da53e48a5babf38743e1087c34e552894e47e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Ver=C3=ADssimo?= <211358+averissimo@users.noreply.github.com> Date: Thu, 24 Oct 2024 16:25:21 +0100 Subject: [PATCH] fix: missing replacement of old function name --- R/utils.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/utils.R b/R/utils.R index 49f54a696..4261c3acb 100644 --- a/R/utils.R +++ b/R/utils.R @@ -106,6 +106,6 @@ NS <- function(namespace, id = NULL) { # nolint: object_name. #' #' @noRd moduleServer <- function(id, module, session = getDefaultReactiveDomain()) { # nolint: object_name. - id <- js_encode(id) + id <- sanitize_id(id) shiny::moduleServer(id, module, session) }