diff --git a/pkg/client/src/components/FannedHand.tsx b/pkg/client/src/components/FannedHand.tsx
index 838a361..31318d4 100644
--- a/pkg/client/src/components/FannedHand.tsx
+++ b/pkg/client/src/components/FannedHand.tsx
@@ -5,28 +5,26 @@ import { Stylable } from "./toolbox";
export default (props: { handCount: number } & Stylable) => {
return (
-
-
- {(_, i) => {
- const midOffset = i() + 0.5 - props.handCount / 2;
- return (
-
- );
- }}
-
-
+
+ {(_, i) => {
+ const midOffset = i() + 0.5 - props.handCount / 2;
+ return (
+
+ );
+ }}
+
);
};
diff --git a/pkg/client/src/components/games/simple.tsx b/pkg/client/src/components/games/simple.tsx
index 3c98121..99e38f7 100644
--- a/pkg/client/src/components/games/simple.tsx
+++ b/pkg/client/src/components/games/simple.tsx
@@ -87,7 +87,6 @@ export default () => {
{
- console.log("Setting hand ref");
const midOffset =
i() + 0.5 - Object.values(view().playerHandCounts).length / 2;