Skip to content

Commit

Permalink
Deploy "black" (#386)
Browse files Browse the repository at this point in the history
* Fix Vault quantities bug (#385)

* Fixed typo on "You din't win anything". (#384)

Co-authored-by: Filipe Felício <[email protected]>
Co-authored-by: Francisco Neves <[email protected]>
  • Loading branch information
3 people authored Feb 18, 2022
2 parents 9cdffd9 + 9d97c81 commit e5c388e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion components/moonstone/user/vault/wheel/Prizes/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ export default function Prizes({ products }) {
{product.name}
</div>
</h4>
<p className="ml-4 text-lg font-medium text-gray-900"> 2 </p>
<p className="ml-4 text-lg font-medium text-gray-900">
{" "}
{product.quantity}{" "}
</p>
</div>
<p className="mt-1 text-sm text-gray-500">
{product.description}
Expand Down
2 changes: 1 addition & 1 deletion pages/attendee/wheel.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function WheelPage() {
} else if (response.prize.name == "Nada") {
updateWheelMessage(
<WheelMessage
title="You din't win anything!"
title="You didn't win anything!"
description="Better luck next time."
onExit={(_) => updateWheelMessage(null)}
/>
Expand Down

0 comments on commit e5c388e

Please sign in to comment.