diff --git a/common/envs/prod.ts b/common/envs/prod.ts index 01c33016..20866429 100644 --- a/common/envs/prod.ts +++ b/common/envs/prod.ts @@ -43,7 +43,7 @@ export const PROD_CONFIG: EnvConfig = { ], visibility: 'PUBLIC', - moneyMoniker: 'ϻ', + moneyMoniker: 'M$', navbarLogoPath: '', faviconPath: '/favicon.ico', newQuestionPlaceholders: [ diff --git a/web/components/linkify.tsx b/web/components/linkify.tsx index dbe7042d..3a5f2a18 100644 --- a/web/components/linkify.tsx +++ b/web/components/linkify.tsx @@ -6,8 +6,8 @@ import { SiteLink } from './site-link' export function Linkify(props: { text: string; gray?: boolean }) { let { text, gray } = props // Replace "m1234" with "ϻ1234" - const mRegex = /(\W|^)m(\d+)/g - text = text.replace(mRegex, (_, pre, num) => `${pre}ϻ${num}`) + // const mRegex = /(\W|^)m(\d+)/g + // text = text.replace(mRegex, (_, pre, num) => `${pre}ϻ${num}`) // Find instances of @username, #hashtag, and https://... const regex =