Fix JSX syntax in frontend/src/App.jsx

This commit is contained in:
Zac Gaetano 2026-04-04 22:47:31 -04:00
parent db17a9ff61
commit c0ccf050c7

View file

@ -246,7 +246,7 @@ const App = () => {
</div>
)}
{activeView === 'tasks' && (
{activeView === 'tasks' && (<>
<aside className="sidebar">
<button
className="btn btn-primary btn-create"
@ -461,7 +461,7 @@ const App = () => {
</div>
)}
</section>
)} {/* end activeView === 'tasks' */}
</>)} {/* end activeView === 'tasks' */}
</main>
</div>
);