deploy shiny app, tidy verse conflicts

I have problems deploying a shiny app that runs perfect locally. The logs indicate that the problems arise due to conflicts with tidy verse. I used the conflicted package to define preferences. Do you know what else I could do?

rsconnect::showLogs(, entries=50)
2024-04-03T09:02:28.019669+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.024271+00:00 shinyapps[11559906]: as.Date, as.Date.numeric
2024-04-03T09:02:28.030548+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.035381+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.042395+00:00 shinyapps[11559906]: Attaching package: ‘DT’
2024-04-03T09:02:28.047388+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.052500+00:00 shinyapps[11559906]: The following objects are masked from ‘package:shiny’:
2024-04-03T09:02:28.057363+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.061985+00:00 shinyapps[11559906]: dataTableOutput, renderDataTable
2024-04-03T09:02:28.066939+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.071707+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.076409+00:00 shinyapps[11559906]: Attaching package: ‘shinyjs’
2024-04-03T09:02:28.081299+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.086284+00:00 shinyapps[11559906]: The following object is masked from ‘package:shinyWidgets’:
2024-04-03T09:02:28.091015+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.100488+00:00 shinyapps[11559906]: alert
2024-04-03T09:02:28.105382+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.110323+00:00 shinyapps[11559906]: The following object is masked from ‘package:sp’:
2024-04-03T09:02:28.115347+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.120186+00:00 shinyapps[11559906]: show
2024-04-03T09:02:28.124919+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.129754+00:00 shinyapps[11559906]: The following object is masked from ‘package:shiny’:
2024-04-03T09:02:28.134504+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.139206+00:00 shinyapps[11559906]: runExample
2024-04-03T09:02:28.143868+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.148776+00:00 shinyapps[11559906]: The following objects are masked from ‘package:methods’:
2024-04-03T09:02:28.153620+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.158487+00:00 shinyapps[11559906]: removeClass, show
2024-04-03T09:02:28.164445+00:00 shinyapps[11559906]:
2024-04-03T09:02:28.994319+00:00 shinyapps[11559906]: ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
2024-04-03T09:02:28.999610+00:00 shinyapps[11559906]: :heavy_check_mark: forcats 1.0.0 :heavy_check_mark: stringr 1.5.1
2024-04-03T09:02:29.004334+00:00 shinyapps[11559906]: :heavy_check_mark: lubridate 1.9.3 :heavy_check_mark: tibble 3.2.1
2024-04-03T09:02:29.009337+00:00 shinyapps[11559906]: :heavy_check_mark: purrr 1.0.2 :heavy_check_mark: tidyr 1.3.0
2024-04-03T09:02:29.014196+00:00 shinyapps[11559906]: ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
2024-04-03T09:02:29.019003+00:00 shinyapps[11559906]: :heavy_multiplication_x: dplyr::combine() masks gridExtra::combine()
2024-04-03T09:02:29.024425+00:00 shinyapps[11559906]: :heavy_multiplication_x: dplyr::filter() masks stats::filter()
2024-04-03T09:02:29.029217+00:00 shinyapps[11559906]: :heavy_multiplication_x: dplyr::lag() masks stats::lag()
2024-04-03T09:02:29.036211+00:00 shinyapps[11559906]: :heavy_multiplication_x: lubridate::show() masks shinyjs::show(), sp::show(), methods::show()
2024-04-03T09:02:29.041193+00:00 shinyapps[11559906]: :information_source: Use the conflicted package (http://conflicted.r-lib.org/) to force all conflicts to become errors
2024-04-03T09:02:29.046287+00:00 shinyapps[11559906]: To enable caching of data, set options(tigris_use_cache = TRUE)
2024-04-03T09:02:29.051312+00:00 shinyapps[11559906]: in your R script or .Rprofile.
2024-04-03T09:02:29.056127+00:00 shinyapps[11559906]: [conflicted] Will prefer dplyr::combine over any other package.
2024-04-03T09:02:29.061029+00:00 shinyapps[11559906]: [conflicted] Will prefer dplyr::filter over any other package.
2024-04-03T09:02:29.066290+00:00 shinyapps[11559906]: [conflicted] Will prefer dplyr::lag over any other package.
2024-04-03T09:02:29.070990+00:00 shinyapps[11559906]: [conflicted] Will prefer lubridate::show over any other package.
2024-04-03T09:02:29.076948+00:00 shinyapps[11559906]: [conflicted] Will prefer shinyjs::alert over any other package.
2024-04-03T09:02:29.082942+00:00 shinyapps[11559906]: [conflicted] Will prefer shiny::dataTableOutput over any other package.
2024-04-03T09:02:29.087684+00:00 shinyapps[11559906]: [conflicted] Will prefer shinyjs::removeClass over any other package.
2024-04-03T09:02:29.092545+00:00 shinyapps[11559906]: [conflicted] Will prefer DT::renderDataTable over any other package.
2024-04-03T09:02:29.097472+00:00 shinyapps[11559906]: [conflicted] Will prefer shiny::runExample over any other package.

I would be so grateful for your help.