diff --git a/common/envs/prod.ts b/common/envs/prod.ts index 20866429..01c33016 100644 --- a/common/envs/prod.ts +++ b/common/envs/prod.ts @@ -43,7 +43,7 @@ export const PROD_CONFIG: EnvConfig = { ], visibility: 'PUBLIC', - moneyMoniker: 'M$', + moneyMoniker: 'ϻ', navbarLogoPath: '', faviconPath: '/favicon.ico', newQuestionPlaceholders: [ diff --git a/web/components/linkify.tsx b/web/components/linkify.tsx index 3a5f2a18..dbe7042d 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 =