forked from All-Hands-AI/OpenHands
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: show code tab by default, planner not working yet (All-Hands-AI#775
) * fix: show code tab by default, planner not working yet * remove planner content * remove planner for now
- Loading branch information
Showing
2 changed files
with
2 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,7 @@ | ||
import React from "react"; | ||
|
||
function Planner(): JSX.Element { | ||
return ( | ||
<div className="h-full w-full bg-bg-workspace"> | ||
<h3> | ||
Current Focus: Set up the development environment according to the | ||
project's instructions. | ||
</h3> | ||
<ul className="ml-4 mt-3"> | ||
<li className="space-x-2"> | ||
<input type="checkbox" checked readOnly /> | ||
<span> | ||
Clone the repository and review the README for project setup | ||
instructions. | ||
</span> | ||
</li> | ||
<li className="space-x-2"> | ||
<input type="checkbox" checked readOnly /> | ||
<span> | ||
Identify the package manager and install necessary dependencies. | ||
</span> | ||
</li> | ||
<li className="space-x-2"> | ||
<input type="checkbox" /> | ||
<span> | ||
Set up the development environment according to the project's | ||
instructions. | ||
</span> | ||
</li> | ||
{/* Add more tasks */} | ||
</ul> | ||
</div> | ||
); | ||
return <div className="h-full w-full bg-bg-workspace">Coming soon...</div>; | ||
} | ||
|
||
export default Planner; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters