From acaab4dc9f5c65e4fc971ef5d9ba80b50debb7a0 Mon Sep 17 00:00:00 2001 From: niki <295591807+nikiwastaken@users.noreply.github.com> Date: Sun, 21 Jun 2026 13:32:14 +0000 Subject: [PATCH 1/3] Fix cat status not being displayed on its own --- src/app/components/user-profile/UserRoomProfile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/user-profile/UserRoomProfile.tsx b/src/app/components/user-profile/UserRoomProfile.tsx index 974e47266..518c3448a 100644 --- a/src/app/components/user-profile/UserRoomProfile.tsx +++ b/src/app/components/user-profile/UserRoomProfile.tsx @@ -253,7 +253,7 @@ function UserExtendedSection({ ); return ( - {(pronouns || localTime) && ( + {(pronouns || localTime || catStatusText) && ( {pronouns && ( From 67057bcfe6706f520a9c2dac6b6f131591c17fc1 Mon Sep 17 00:00:00 2001 From: niki <295591807+nikiwastaken@users.noreply.github.com> Date: Sun, 21 Jun 2026 14:34:28 +0000 Subject: [PATCH 2/3] Add changeset --- .changeset/fix-cat-status.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/fix-cat-status.md diff --git a/.changeset/fix-cat-status.md b/.changeset/fix-cat-status.md new file mode 100644 index 000000000..350349b92 --- /dev/null +++ b/.changeset/fix-cat-status.md @@ -0,0 +1,5 @@ +--- +default: minor +--- + +Fix cat status not being present on its own. From 8844093fa6e65a6877cba6358038976cf6de7966 Mon Sep 17 00:00:00 2001 From: 7w1 Date: Sun, 21 Jun 2026 11:28:27 -0500 Subject: [PATCH 3/3] Update default version for cat status changeset Change default version from minor to patch for cat status fix. --- .changeset/fix-cat-status.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/fix-cat-status.md b/.changeset/fix-cat-status.md index 350349b92..fdc50978c 100644 --- a/.changeset/fix-cat-status.md +++ b/.changeset/fix-cat-status.md @@ -1,5 +1,5 @@ --- -default: minor +default: patch --- Fix cat status not being present on its own.