From a4591e619be1f4f4553c3d78ed87a524a9610ba3 Mon Sep 17 00:00:00 2001 From: Geoffrey Allott Date: Mon, 22 Mar 2021 21:30:19 +0000 Subject: [PATCH] fix heart symbol --- site/modules/card.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/modules/card.js b/site/modules/card.js index be14c0f..032575b 100644 --- a/site/modules/card.js +++ b/site/modules/card.js @@ -29,7 +29,7 @@ export function pretty_suit(suit) { switch (suit) { case "Clubs": return "♣"; case "Diamonds": return "♢"; - case "Hearts": return "♢"; + case "Hearts": return "♡"; case "Spades": return "♠"; } } -- 2.34.1