From f4839c2c45696602c87b1a0dd68ad83ae408dc0c Mon Sep 17 00:00:00 2001 From: Roomote Date: Wed, 12 Aug 2026 03:08:00 +0000 Subject: [PATCH] fix: correct high-confidence typos --- CHANGELOG.md | 2 +- apps/web/src/instrumentation-client.ts | 2 +- packages/slack/src/__tests__/show-task-configuration.test.ts | 2 +- packages/slack/src/block-kit.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c33abf075..5eb3e5d03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -887,7 +887,7 @@ Multi-SCM triage and mentions, richer chat and release UX, and more reliable sel - Stop Gitea pull requests from flooding with bot review threads when the bot username does not start with `roomote`, by correctly recognizing bot comments without re-entering mention intake. - Hide Sandboxes settings when Roomote Cloud is enabled: remove the nav entry and redirect direct visits so cloud deployments do not expose byo-sandbox configuration. - Show provider headers in multi-provider model choosers and group ChatGPT subscription models under ChatGPT so long model lists are easier to scan in launch and Settings surfaces. -- Default models is now Model mapping with a preset chooser and confirmation dialog before applying recommended provider defaults, so operators can review the mapping instead of it overwriting immediately. +- Default models are now Model mapping with a preset chooser and confirmation dialog before applying recommended provider defaults, so operators can review the mapping instead of it overwriting immediately. - Tasks no longer hang forever when OpenCode session creation never returns; the run fails closed with diagnostics instead of waiting indefinitely. - Provider Cancel (Slack and Telegram) now fully stops the active run and shuts the sandbox down, instead of leaving a resumable standby machine after cancel. - Remove the customizable Vibes admin settings surface and deployment style or emoji overrides; agents use the fixed product defaults instead. diff --git a/apps/web/src/instrumentation-client.ts b/apps/web/src/instrumentation-client.ts index dee400c55..e532d00b9 100644 --- a/apps/web/src/instrumentation-client.ts +++ b/apps/web/src/instrumentation-client.ts @@ -1,5 +1,5 @@ // This file configures the initialization of Sentry on the client. -// The config you add here will be used whenever a users loads a page in their browser. +// The config you add here will be used whenever a user loads a page in their browser. // https://docs.sentry.io/platforms/javascript/guides/nextjs/ // Note: User context is set via UserAnalyticsContext component. diff --git a/packages/slack/src/__tests__/show-task-configuration.test.ts b/packages/slack/src/__tests__/show-task-configuration.test.ts index c9f40e81f..8852b1c2f 100644 --- a/packages/slack/src/__tests__/show-task-configuration.test.ts +++ b/packages/slack/src/__tests__/show-task-configuration.test.ts @@ -945,7 +945,7 @@ describe('Slack deleted-mention suppression', () => { }, ); - it('starts immediately when all repositories is the only fallback workspace option', async () => { + it('starts immediately when all repositories are the only fallback workspace option', async () => { environmentsFindManyMock.mockResolvedValue([]); routeTaskMock.mockResolvedValueOnce({ status: 'fallback', diff --git a/packages/slack/src/block-kit.ts b/packages/slack/src/block-kit.ts index 2504974f1..b4ea1e15b 100644 --- a/packages/slack/src/block-kit.ts +++ b/packages/slack/src/block-kit.ts @@ -1377,7 +1377,7 @@ export async function showTaskConfiguration({ } console.log( - `[SlackRouting] Started task immediately for thread ${threadId} because all repositories is the only available workspace`, + `[SlackRouting] Started task immediately for thread ${threadId} because all repositories are the only available workspace`, ); return startResult.response;