Skip to content

Commit

Permalink
geosolutions-it#10711: remove unused console.log in StylePArserUtils
Browse files Browse the repository at this point in the history
  • Loading branch information
mahmoudadel54 committed Dec 9, 2024
1 parent 9e72423 commit ef4f18c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion web/client/utils/styleparser/StyleParserUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,6 @@ export const drawIcons = (geoStylerStyle, options) => {
const marks = symbolizers.filter(({ kind }) => kind === 'Mark');
const icons = symbolizers.filter(({ kind }) => kind === 'Icon');
const loadFontAwesomeForIcons = getConfigProp("loadFontAwesomeForIcons");
console.log({loadFontAwesomeForIcons});
// if undefined or true it will load it to preserve previous behaviour
const loadingPromise = (isNil(loadFontAwesomeForIcons) || loadFontAwesomeForIcons) && icons?.length ? loadFontAwesome() : Promise.resolve();
return loadingPromise
Expand Down

0 comments on commit ef4f18c

Please sign in to comment.