From 7876abbc613f4bcef83fddcb5423e65cd37cc8f3 Mon Sep 17 00:00:00 2001 From: Bigint <69431456+bigint@users.noreply.github.com> Date: Sat, 1 Mar 2025 22:24:21 +0530 Subject: [PATCH] refactor: Update PostAction type import to use PostActionFragment --- .../Post/OpenAction/CollectAction/CollectActionButton.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/components/Post/OpenAction/CollectAction/CollectActionButton.tsx b/apps/web/src/components/Post/OpenAction/CollectAction/CollectActionButton.tsx index 06dddb9ac750..6668e505a53d 100644 --- a/apps/web/src/components/Post/OpenAction/CollectAction/CollectActionButton.tsx +++ b/apps/web/src/components/Post/OpenAction/CollectAction/CollectActionButton.tsx @@ -10,7 +10,7 @@ import getCollectActionData from "@hey/helpers/getCollectActionData"; import { type LoggedInPostOperationsFragment, type Post, - type PostAction, + type PostActionFragment, useExecutePostActionMutation } from "@hey/indexer"; import { Button, WarningMessage } from "@hey/ui"; @@ -26,7 +26,7 @@ import { useBalance } from "wagmi"; interface CollectActionButtonProps { collects: number; onCollectSuccess?: () => void; - postAction: PostAction; + postAction: PostActionFragment; post: Post; }