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
The app looks for prices by breaking all the strings on the page and wrapping them in new nodes based on a patter. Anything that is not a price, gets unwrapped after the initial parsing. When the string pieces are unwrapped, they end up as separate text nodes:
And the styles on this page have a rule to capitalize link text which applies to all the text nodes inside that link:
text-transform: capitalize;
That's why you get this strange capitalization.
I have no idea when/if I get time to fix this though :/
With the extension installed, it appears that non-price strings get modified:
Note the difference in the case of this site's main nav:
vs.
The issue could be related to this line.
The text was updated successfully, but these errors were encountered: