Spaces:
Running
Running
Commit ·
24e44fe
1
Parent(s): f326566
commit 014
Browse files- src/App.js +2 -2
src/App.js
CHANGED
|
@@ -20,7 +20,7 @@ export default function App() {
|
|
| 20 |
|
| 21 |
if (msg.includes("```")) setLastCode(msg);
|
| 22 |
|
| 23 |
-
let fullContent = "
|
| 24 |
|
| 25 |
await streamChat({
|
| 26 |
message: msg,
|
|
@@ -61,7 +61,7 @@ export default function App() {
|
|
| 61 |
}} />
|
| 62 |
<button onClick={handleExplain}>Explain Code</button>
|
| 63 |
<button onClick={handleFixBug}>Fix Bug</button>
|
| 64 |
-
<button onClick={handleStackOverflow}>StackOverflow</button>
|
| 65 |
</div>
|
| 66 |
<ChatInput onSend={handleSend} />
|
| 67 |
</div>
|
|
|
|
| 20 |
|
| 21 |
if (msg.includes("```")) setLastCode(msg);
|
| 22 |
|
| 23 |
+
let fullContent = "";
|
| 24 |
|
| 25 |
await streamChat({
|
| 26 |
message: msg,
|
|
|
|
| 61 |
}} />
|
| 62 |
<button onClick={handleExplain}>Explain Code</button>
|
| 63 |
<button onClick={handleFixBug}>Fix Bug</button>
|
| 64 |
+
{/* <button onClick={handleStackOverflow}>StackOverflow</button> */}
|
| 65 |
</div>
|
| 66 |
<ChatInput onSend={handleSend} />
|
| 67 |
</div>
|