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,7 +1,6 @@
import React, { useState, useEffect } from 'react';
import { useAppStore, PostData } from '../../store';
import { showToast } from '../Toast';
import { ProjectSelector } from '../ProjectSelector';
import './Sidebar.css';
const formatDate = (dateString: string) => {
@@ -631,7 +630,6 @@ export const Sidebar: React.FC = () => {
return (
<div className="sidebar">
<ProjectSelector />
{activeView === 'posts' && <PostsList />}
{activeView === 'media' && <MediaList />}
{activeView === 'settings' && <SettingsPanel />}