Skip to content

Commit

Permalink
Fix unconnected
Browse files Browse the repository at this point in the history
  • Loading branch information
samuveth committed Jan 24, 2024
1 parent 9d94099 commit 7c8c35e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions src/components/SpaceProposalBoost.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const boostsSorted = computed(() => {
});
const boostsOwner = computed(() => {
if (!boosts.value.length) return [];
if (!boosts.value.length || !web3Account.value) return [];
return boosts.value.filter(
boost => getAddress(boost.owner) === getAddress(web3Account.value)
);
Expand Down Expand Up @@ -237,7 +237,6 @@ watch(
:boost="boost"
:claims="boostClaims"
:proposal="proposal"
:web3-account="web3Account"
:reward="
boostRewards.find(
reward =>
Expand Down
1 change: 0 additions & 1 deletion src/components/SpaceProposalBoostItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const props = defineProps<{
proposal: Proposal;
boost: BoostSubgraph;
claims?: BoostClaimSubgraph[];
web3Account: string;
isEligible?: boolean;
reward?: BoostRewardGuard;
}>();
Expand Down

0 comments on commit 7c8c35e

Please sign in to comment.