Fix payment methods icon

This commit is contained in:
koalasat
2025-08-10 11:24:06 +02:00
parent 8791135374
commit 22ce9a41d6

View File

@ -33,9 +33,9 @@ const StringAsIcons: React.FC<StringAsIconsProps> = ({
// Adds icons for each PaymentMethod that matches
methods.forEach((method, i) => {
const regex = new RegExp(`\\b${method.name.toLowerCase()}\\b`, 'g');
const regex = new RegExp(`\\b${method.name}\\b`, 'g');
if (regex.test(customMethods.toLowerCase())) {
if (regex.test(customMethods)) {
customMethods = customMethods.replace(regex, '');
rows.push(
<Tooltip