This commit is contained in:
Henry Jameson 2026-08-04 20:16:29 +03:00
commit f7a4ab2cf1
6 changed files with 25 additions and 29 deletions

View file

@ -47,7 +47,7 @@ const highlightStyle = (prefs) => {
const highlightClass = (user) => {
return (
'USER____' + user.screen_name?.replaceAll('.', '_').replace(/@/g, '_AT_')
'USER____' + user.screen_name?.replaceAll('.', '_').replaceAll('@', '_AT_')
)
}