feat: 开启鼠标点击功能

This commit is contained in:
claude-code-best
2026-04-06 10:11:03 +08:00
parent 522a1a366d
commit ced5080019
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ import { isEnvTruthy } from 'src/utils/envUtils.js'
import { useStartupNotification } from './useStartupNotification.js' import { useStartupNotification } from './useStartupNotification.js'
const NPM_DEPRECATION_MESSAGE = const NPM_DEPRECATION_MESSAGE =
'Claude Code has switched from npm to native installer. Run `claude install` or see https://docs.anthropic.com/en/docs/claude-code/getting-started for more options.' ''
export function useNpmDeprecationNotification(): void { export function useNpmDeprecationNotification(): void {
useStartupNotification(async () => { useStartupNotification(async () => {

View File

@@ -125,7 +125,7 @@ export function isFullscreenEnvEnabled(): boolean {
} }
return false return false
} }
return process.env.USER_TYPE === 'ant' return true
} }
/** /**