Skip to content

Commit

Permalink
fix chain url
Browse files Browse the repository at this point in the history
  • Loading branch information
rbennettcw committed Dec 3, 2024
1 parent c473879 commit d60c548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/model/src/policies/FarcasterWorker.policy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export function FarcasterWorker(): Policy<typeof inputs> {
mustExist('Community with Chain Node', community?.ChainNode);

const contestManagers = contestActions.map((ca) => ({
url: community.ChainNode!.url! || community.ChainNode!.private_url!,
url: community.ChainNode!.private_url! || community.ChainNode!.url!,
contest_address: contestManager.contest_address,
content_id: ca.content_id,
}));
Expand Down

0 comments on commit d60c548

Please sign in to comment.