From 783446a2ab1ca179b3404d0cc856556179d41d4c Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Fri, 6 Mar 2026 07:30:36 -0500 Subject: [PATCH] Track receival of bag_remaining count when joining This was recently added to what the server sends on join --- letterrip/letterrip.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/letterrip/letterrip.jsx b/letterrip/letterrip.jsx index 64cecd4..c5538b8 100644 --- a/letterrip/letterrip.jsx +++ b/letterrip/letterrip.jsx @@ -369,7 +369,8 @@ class Game extends React.Component { this.setState({ joined: true, tiles: tiles, - rack: tiles.map((_, i) => i) + rack: tiles.map((_, i) => i), + bag_remaining: data.remaining }); } } -- 2.45.2