submodules
parent
7f098d059d
commit
8e55d8681d
|
|
@ -1 +1 @@
|
|||
Subproject commit 7f1f53ad388f9e3eab1533556d2918c66918790d
|
||||
Subproject commit 4603175783d3ec8af22e9e8910916d557492b66a
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit 3cd1f4ec377bb11ca8cfeab6dcd48e37d0cdbdfb
|
||||
Subproject commit e650b73359fe1a17f4b47a9df964c98a627316d4
|
||||
|
|
@ -1,4 +1,7 @@
|
|||
import { RE_MENTIONS, RE_EVERYONE } from "revolt.js";
|
||||
import { RE_MENTIONS } from "revolt.js";
|
||||
|
||||
// RE_EVERYONE is not exported in the ESM build, define it locally
|
||||
const RE_EVERYONE = /@everyone/g;
|
||||
import styled from "styled-components";
|
||||
import { clientController } from "../../../controllers/client/ClientController";
|
||||
import UserShort from "../../common/user/UserShort";
|
||||
|
|
@ -76,4 +79,4 @@ export const remarkMention = createComponent("mention", RE_MENTIONS, (match) =>
|
|||
clientController.getAvailableClient().users.has(match),
|
||||
);
|
||||
|
||||
export const remarkEveryone = createComponent("everyone", RE_EVERYONE, () => true);
|
||||
export const remarkEveryone = createComponent("everyone", RE_EVERYONE, () => true);
|
||||
Loading…
Reference in New Issue