aboutsummaryrefslogtreecommitdiff
path: root/src/webpack
diff options
context:
space:
mode:
authorSofia <me@dzshn.xyz>2022-11-28 23:25:07 +0000
committerGitHub <noreply@github.com>2022-11-29 00:25:07 +0100
commitfc09460d82dc30e7393a659411f40bc011528294 (patch)
tree50c42ae4a56a6577910d60c0d9a9a2417c0b2d10 /src/webpack
parente884738f424dd9496497ce525d1a2deb04ccc2f7 (diff)
downloadVencord-fc09460d82dc30e7393a659411f40bc011528294.tar.gz
Vencord-fc09460d82dc30e7393a659411f40bc011528294.tar.bz2
Vencord-fc09460d82dc30e7393a659411f40bc011528294.zip
feat(plugin): add ServerListIndicators (#272)
Diffstat (limited to 'src/webpack')
-rw-r--r--src/webpack/common.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/webpack/common.tsx b/src/webpack/common.tsx
index bd6a69a..773cc14 100644
--- a/src/webpack/common.tsx
+++ b/src/webpack/common.tsx
@@ -50,6 +50,7 @@ export let UserStore: Stores.UserStore;
export let SelectedChannelStore: Stores.SelectedChannelStore;
export let SelectedGuildStore: any;
export let ChannelStore: Stores.ChannelStore;
+export let RelationshipStore: Stores.RelationshipStore;
export const Forms = {} as {
FormTitle: Components.FormTitle;
@@ -156,6 +157,7 @@ waitFor("getSortedPrivateChannels", m => ChannelStore = m);
waitFor("getCurrentlySelectedChannelId", m => SelectedChannelStore = m);
waitFor("getLastSelectedGuildId", m => SelectedGuildStore = m);
waitFor("getGuildCount", m => GuildStore = m);
+waitFor("getRelationshipType", m => RelationshipStore = m);
waitFor(["Hovers", "Looks", "Sizes"], m => Button = m);
waitFor(filters.byCode("helpdeskArticleId"), m => Switch = m);