diff --git a/src/plugins/pauseInvitesForever/index.tsx b/src/plugins/pauseInvitesForever/index.tsx index 3f1ce6bf..666f0af8 100644 --- a/src/plugins/pauseInvitesForever/index.tsx +++ b/src/plugins/pauseInvitesForever/index.tsx @@ -19,16 +19,11 @@ import ErrorBoundary from "@components/ErrorBoundary"; import { Devs } from "@utils/constants"; import definePlugin from "@utils/types"; -import { findLazy } from "@webpack"; import { Constants, GuildStore, i18n, RestAPI } from "@webpack/common"; -const InvitesDisabledExperiment = findLazy(m => m.definition?.id === "2022-07_invites_disabled"); - function showDisableInvites(guildId: string) { - // Once the experiment is removed, this should keep working - const { enableInvitesDisabled } = InvitesDisabledExperiment?.getCurrentConfig?.({ guildId }) ?? { enableInvitesDisabled: true }; // @ts-ignore - return enableInvitesDisabled && !GuildStore.getGuild(guildId).hasFeature("INVITES_DISABLED"); + return !GuildStore.getGuild(guildId).hasFeature("INVITES_DISABLED"); } function disableInvites(guildId: string) { diff --git a/src/plugins/showHiddenThings/index.ts b/src/plugins/showHiddenThings/index.ts index f01dc210..9ffaa7e1 100644 --- a/src/plugins/showHiddenThings/index.ts +++ b/src/plugins/showHiddenThings/index.ts @@ -51,7 +51,7 @@ export default definePlugin({ }, }, { - find: "2022-07_invites_disabled", + find: "INVITES_DISABLED))||", predicate: () => settings.store.showInvitesPaused, replacement: { match: /\i\.\i\.can\(\i\.\i.MANAGE_GUILD,\i\)/,