Skip to content

Commit

Permalink
fix: comment out referrers
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint committed Dec 28, 2023
1 parent 19c48b2 commit f1f623b
Showing 1 changed file with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@ import LoginButton from '@components/Shared/Navbar/LoginButton';
import NoBalanceError from '@components/Shared/NoBalanceError';
import { RectangleStackIcon } from '@heroicons/react/24/outline';
import { LensHub, PublicAct } from '@hey/abis';
import {
LENSHUB_PROXY,
PUBLICACT_PROXY,
REFERRER_ID
} from '@hey/data/constants';
import { LENSHUB_PROXY, PUBLICACT_PROXY } from '@hey/data/constants';
import { PUBLICATION } from '@hey/data/tracking';
import {
useActOnOpenActionMutation,
Expand Down Expand Up @@ -337,10 +333,10 @@ const CollectAction: FC<CollectActionProps> = ({

const actOnRequest: ActOnOpenActionLensManagerRequest = {
actOn: { [getOpenActionActOnKey(openAction.type)]: true },
for: targetPublication?.id,
...(!isMirrorPublication(publication) && {
referrers: [{ profileId: REFERRER_ID }]
})
for: targetPublication?.id
// ...(!isMirrorPublication(publication) && {
// referrers: [{ profileId: REFERRER_ID }]
// })
};

if (canUseManager) {
Expand Down

0 comments on commit f1f623b

Please sign in to comment.