Actualiser src/features/editor/index.jsx
Deploy to home / deploy (push) Successful in 10s

This commit is contained in:
cvancau
2026-08-09 17:58:15 +02:00
parent f186b056a2
commit b36b52104f
+1 -1
View File
@@ -6,7 +6,7 @@ import { useSelector } from 'react-redux';
export default function Editor() {
const activeTab = useSelector((state) => state.parameters.activeTab);
return (
<div className="h-screen col-span-5 overflow-y-auto overscroll-contain">
<div className="h-full min-h-0 col-span-5 overflow-y-auto">
{activeTab === 'Timbre1' ? <Timbre id="timbre1" /> : null}
{activeTab === 'Timbre2' ? <Timbre id="timbre2" /> : null}
{activeTab === 'Vocoder' ? <Vocoder id="vocoder" /> : null}