From 333be4c59be56a788b2be2f32d5a8f93e396ebfc Mon Sep 17 00:00:00 2001 From: Garrick Aden-Buie Date: Thu, 9 Jan 2025 11:07:29 -0500 Subject: [PATCH] fix(brand): Ignore brand when checking pre-compiled CSS versions --- R/precompiled.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/precompiled.R b/R/precompiled.R index 65e03fb3d..11e8b7760 100644 --- a/R/precompiled.R +++ b/R/precompiled.R @@ -10,7 +10,7 @@ precompiled_css <- local({ themes <<- lapply(versions, function(version) { list( version = version, - theme = bs_theme(version) + theme = bs_theme(version, brand = FALSE) ) }) }