From 3b2ad03306958eec7fdef89d6cea33e50d4fafbd Mon Sep 17 00:00:00 2001 From: Demiserular Date: Sun, 15 Feb 2026 15:19:16 +0530 Subject: [PATCH 1/2] fix: swap PUB/SUB badges in sidebar --- apps/studio/src/components/Navigation.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/studio/src/components/Navigation.tsx b/apps/studio/src/components/Navigation.tsx index ba98c9f5b..f095a9018 100644 --- a/apps/studio/src/components/Navigation.tsx +++ b/apps/studio/src/components/Navigation.tsx @@ -115,8 +115,8 @@ const OperationsNavigation: React.FunctionComponent = ({ >
- - Pub + + Sub
{channelName} @@ -147,8 +147,8 @@ const OperationsNavigation: React.FunctionComponent = ({ >
- - Sub + + Pub
{channelName} From 35536a355a0db157418d49af878f3cecbc0c744f Mon Sep 17 00:00:00 2001 From: Demiserular Date: Sun, 15 Feb 2026 16:05:42 +0530 Subject: [PATCH 2/2] fix: resolve build race condition in turbo pipeline Update turbo.json dev pipeline to depend on ^build and add dev script to packages/utils to enable watch mode. Fixes #1243 --- packages/utils/package.json | 5 +++-- turbo.json | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/utils/package.json b/packages/utils/package.json index 0563c6eb3..b7ebd5fec 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -6,7 +6,8 @@ "types": "dist/index.d.ts", "private": true, "scripts": { - "build": "tsup" + "build": "tsup", + "dev": "tsup --watch" }, "keywords": [], "author": "", @@ -18,4 +19,4 @@ "devDependencies": { "tsup": "^8.0.2" } -} +} \ No newline at end of file diff --git a/turbo.json b/turbo.json index 6fbcdb1aa..d008b02a7 100644 --- a/turbo.json +++ b/turbo.json @@ -8,6 +8,7 @@ "cache": false }, "dev": { + "dependsOn": ["^build"], "cache": false, "persistent": true },