Unverified Commit 08e8bb04 authored by Benjamin Wheeler's avatar Benjamin Wheeler Committed by GitHub

Merge pull request #4125 from apple502j/patch-21

Fix welcomingcommittee mention link href
parents a5e0fbc1 927a4b91
...@@ -24,7 +24,7 @@ module.exports = (text, opts) => { ...@@ -24,7 +24,7 @@ module.exports = (text, opts) => {
if (opts.usernames) { if (opts.usernames) {
replacedText = reactStringReplace(replacedText, /@([\w-]+)/g, (match, i) => ( replacedText = reactStringReplace(replacedText, /@([\w-]+)/g, (match, i) => (
<a <a
href={`/users/${match}`} href={match.toLowerCase() === 'welcomingcommittee' ? '/studios/146521/' : `/users/${match}`}
key={match + i} key={match + i}
>@{match}</a> >@{match}</a>
)); ));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment