diff --git a/apps/api/tests/analytics/overview.spec.ts b/apps/api/tests/analytics/overview.spec.ts index 9c1c41213bb4..f78782220dfe 100644 --- a/apps/api/tests/analytics/overview.spec.ts +++ b/apps/api/tests/analytics/overview.spec.ts @@ -16,7 +16,7 @@ describe("GET /analytics/overview", () => { expect(item).toHaveProperty("likes"); expect(item).toHaveProperty("comments"); expect(item).toHaveProperty("collects"); - expect(item).toHaveProperty("mirrors"); + expect(item).toHaveProperty("reposts"); expect(item).toHaveProperty("quotes"); expect(item).toHaveProperty("mentions"); expect(item).toHaveProperty("follows"); diff --git a/apps/og/src/app/posts/[id]/page.tsx b/apps/og/src/app/posts/[id]/page.tsx index 6e439e59912e..7c0583043dde 100644 --- a/apps/og/src/app/posts/[id]/page.tsx +++ b/apps/og/src/app/posts/[id]/page.tsx @@ -87,7 +87,7 @@ export const generateMetadata = async ({ "count:actions": targetPost.stats.countOpenActions, "count:comments": targetPost.stats.comments, "count:likes": targetPost.stats.reactions, - "count:mirrors": targetPost.stats.reposts, + "count:reposts": targetPost.stats.reposts, "count:quotes": targetPost.stats.quotes, "lens:id": targetPost.id, ...getCollectModuleMetadata(targetPost) @@ -128,7 +128,7 @@ const Page = async ({ params }: Props) => { Likes: {metadata.other?.["count:likes"]}