You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.error(`Toggle button (.category-toggle-all-btn) not found for category: ${category}. This indicates a UI rendering issue. Please check the createSettingsCategoryHeader method.`);
588
+
console.error(`Toggle control is unavailable for category: ${category}.`,{
@@ -914,9 +918,8 @@ export class ExternalServicesManager {
914
918
leticonName=null;
915
919
916
920
for(constpartofparts){
917
-
// Font Awesome style prefixes: shorthand (far/fas/fab/fad/fal/fat) and longhand (fa-regular/fa-solid/fa-brands/fa-duotone/fa-light/fa-thin)
918
-
// /^fa[rsbdlt]$/ maps to: far (regular), fas (solid), fab (brands), fad (duotone), fal (light), fat (thin).
919
-
// Match FA shorthand style prefix tokens exactly (far, fas, fab, fad, fal, fat).
921
+
// /^fa[rsbdlt]$/ maps to: far (regular), fas (solid), fab (brands), fad (duotone), fal (light), fat (thin), and matches only exact 3-character tokens.
922
+
// Because of ^...$ anchors, longer strings like "far-extra" do not match; only exact tokens (far, fas, fab, fad, fal, fat) are accepted.
0 commit comments