feat: moved project selector to footer

This commit is contained in:
2026-02-10 13:18:44 +01:00
parent 6a80f7c7b6
commit 867b22add0
3 changed files with 17 additions and 20 deletions

View File

@@ -1,5 +1,6 @@
import React from 'react';
import { useAppStore } from '../../store';
import { ProjectSelector } from '../ProjectSelector';
import './StatusBar.css';
export const StatusBar: React.FC = () => {
@@ -20,6 +21,9 @@ export const StatusBar: React.FC = () => {
return (
<div className="status-bar">
<div className="status-bar-left">
{/* Project Selector */}
<ProjectSelector />
{/* Sync Status */}
<div className={`status-bar-item ${!syncConfigured ? 'warning' : ''}`}>
<span className={`sync-indicator ${syncStatus}`} />