Skip to content

Commit

Permalink
reverted some unexpected changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jjwoz committed Dec 14, 2021
1 parent 1d82b37 commit 5b4409d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions app/src/components/GrantDetailsRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@
<div v-for="(round, index) in roundDetails" :key="index" class="mt-2">
<!--round-->
<div>
<span class="text-grey-400 mr-4">Matching:</span>
<span>{{ round.matching || '...' }} {{ round.matchingToken.symbol }}</span>
<span>, {{ round.name }}</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/src/views/Contribution.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function setTitle(route: string) {
function getFullContributionDetails() {
if (!userAddress.value || !grantContributions.value || !grants.value || !grantRounds.value) {
return null;
return [];
}
const grantMeta = grantMetadata.value ? (grantMetadata.value as Record<string, GrantMetadata>) : undefined;
const grantRoundMeta = grantRoundMetadata.value
Expand Down

0 comments on commit 5b4409d

Please sign in to comment.