fix: change claude login order and command

This commit is contained in:
simosmik
2026-01-28 23:08:11 +00:00
parent 2d06cae0ca
commit 53224e47b6
2 changed files with 4 additions and 3 deletions

View File

@@ -15,7 +15,8 @@ const Onboarding = ({ onComplete }) => {
const [error, setError] = useState('');
const [activeLoginProvider, setActiveLoginProvider] = useState(null);
const [selectedProject] = useState({ name: 'default', fullPath: '' });
const isPlatform = import.meta.env.VITE_IS_PLATFORM === 'true';
const [selectedProject] = useState({ name: 'default', fullPath: isPlatform ? '/workspace' : '' });
const [claudeAuthStatus, setClaudeAuthStatus] = useState({
authenticated: false,