Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate to Lens v3
Browse files Browse the repository at this point in the history
Yoginth committed Dec 14, 2024
1 parent c6fe3d6 commit f735e4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/Post/PostAccount.tsx
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ import Misuse from "@components/Shared/Account/Icons/Misuse";
import Verified from "@components/Shared/Account/Icons/Verified";
import formatRelativeOrAbsolute from "@hey/helpers/datetime/formatRelativeOrAbsolute";
import getAccount from "@hey/helpers/getAccount";
import type { Account, App } from "@hey/indexer";
import type { Account, App, Maybe } from "@hey/indexer";
import Link from "next/link";
import type { FC, ReactNode } from "react";
import { memo } from "react";
@@ -13,7 +13,7 @@ import Slug from "../Shared/Slug";
interface PostAccountProps {
account: Account;
postId: string;
app?: App;
app?: Maybe<App>;
timestamp: Date;
}

0 comments on commit f735e4c

Please sign in to comment.