double quotes -> single quotes

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
AHumphriesSL 2026-02-12 16:18:35 -05:00 committed by GitHub
parent 4a97b0bc13
commit 99aa828753
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -158,7 +158,7 @@ export default {
const exceptions = ['side', 'glass', 'dimming'];
let temp = toTitleCase(text);
exceptions.forEach((exception) => {
const regEx = new RegExp(exception, "ig");
const regEx = new RegExp(exception, 'ig');
temp = temp.replace(regEx, exception);
});
return temp;