Skip to content

Commit

Permalink
Merge pull request #7 from nsbradford/revert-6-bitbuilder_wflow_cv2ny…
Browse files Browse the repository at this point in the history
…3gds2vxb0sZWF8L

Revert "[BitBuilder] Fix grammar mistake"
  • Loading branch information
hbrooks authored Sep 24, 2023
2 parents d28ba63 + 19fc44a commit 52f914a
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions src/components/home/DashboardMode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,11 @@ export default function DashboardMode(props: { user: User | null }) {
</Link>
) : null}
</div>
<p className="mt-2 text-xs leading-5 text-gray-500 sm:mt-0">
{responsesForThisForm.length === 0
? 'No responses yet'
: responsesForThisForm.length === 1
? '1 response'
: responsesForThisForm.length + ' responses'}
</p>
<p className="mt-2 text-xs leading-5 text-gray-500 sm:mt-0">
{responsesForThisForm.length === 0
? 'No responses yet'
: responsesForThisForm.length + ' responses'}
</p>
</div>
</li>
);
Expand All @@ -175,4 +173,4 @@ export default function DashboardMode(props: { user: User | null }) {
</div>
);
}
}
}

0 comments on commit 52f914a

Please sign in to comment.