refactor(utils): unconditional worktree mode enabled

The isWorktreeModeEnabled function always returns true unconditionally. The comment mentions it was previously gated by a GrowthBook flag but the implementation is now a simple constant return.

Affected files: worktreeModeEnabled.ts

Signed-off-by: tuanaiseo <221258316+tuanaiseo@users.noreply.github.com>
This commit is contained in:
tuanaiseo 2026-05-05 06:11:08 +07:00
parent 1becbe36a1
commit 72d8690ec0

View File

@ -6,6 +6,4 @@
* before the cache is populated, silently swallowing --worktree.
* See https://github.com/anthropics/claude-code/issues/27044.
*/
export function isWorktreeModeEnabled(): boolean {
return true
}
export const isWorktreeModeEnabled = true