diff --git a/package.json b/package.json
index 776affcd..5d94c053 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "vencord",
"private": "true",
- "version": "1.7.8",
+ "version": "1.7.9",
"description": "The cutest Discord client mod",
"homepage": "https://github.com/Vendicated/Vencord#readme",
"bugs": {
diff --git a/src/plugins/friendsSince/index.tsx b/src/plugins/friendsSince/index.tsx
index 69d8e739..d6b7d107 100644
--- a/src/plugins/friendsSince/index.tsx
+++ b/src/plugins/friendsSince/index.tsx
@@ -7,22 +7,12 @@
import ErrorBoundary from "@components/ErrorBoundary";
import { Devs } from "@utils/constants";
import { getCurrentChannel } from "@utils/discord";
-import { makeLazy } from "@utils/lazy";
import definePlugin from "@utils/types";
-import { filters, find, findByPropsLazy, handleModuleNotFound } from "@webpack";
+import { findByPropsLazy } from "@webpack";
import { React, RelationshipStore } from "@webpack/common";
const { Heading, Text } = findByPropsLazy("Heading", "Text");
-// Workaround for module differing on stable & canary
-// FIXME: remove once merged into stable
-const getMemberSinceContainer = makeLazy(() => {
- for (const name of ["memberSinceWrapper", "memberSinceContainer"]) {
- const mod = find(filters.byProps(name), { isIndirect: true });
- if (mod) return mod[name];
- }
- handleModuleNotFound("findByProps", "memberSinceWrapper/memberSinceContainer");
- return "";
-});
+const container = findByPropsLazy("memberSinceWrapper");
const { getCreatedAtDate } = findByPropsLazy("getCreatedAtDate");
const clydeMoreInfo = findByPropsLazy("clydeMoreInfo");
const locale = findByPropsLazy("getLocale");
@@ -59,7 +49,7 @@ export default definePlugin({
Friends Since
-
+
{!!getCurrentChannel()?.guild_id && (