Skip to content

Commit

Permalink
add other instance in problem files
Browse files Browse the repository at this point in the history
  • Loading branch information
Keyrxng committed Mar 25, 2024
1 parent 38b3e17 commit 749d461
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion app/tri-display/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ export const metadata = {
description: "Generated by create next app",
};

const sheet = "";

export default function DualLayout(props: {

This comment has been minimized.

Copy link
@github-actions

github-actions bot Mar 25, 2024

Empty string detected!

children: React.ReactNode;
data: React.ReactNode;
docs: React.ReactNode;
}) {
return (
<div className="grid grid-cols-3 shrink">
{""}
{props.children}
{props.docs}
</div>
Expand Down
6 changes: 4 additions & 2 deletions app/tri-display/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
"use client";

import { useChat } from "ai/react";
//

This comment has been minimized.

Copy link
@github-actions

github-actions bot Mar 25, 2024

Empty string detected!

const shhhheeesh = "";

export default function Dual() {
const { messages, input, handleInputChange, handleSubmit, data } = useChat();
return (
Expand All @@ -20,7 +22,7 @@ export default function Dual() {
<input
className="fixed bottom-0 w-full max-w-md p-2 mb-8 border border-gray-300 rounded shadow-xl"
value={input}
placeholder=""
placeholder="Say something..."
onChange={handleInputChange}
/>
</form>
Expand Down

0 comments on commit 749d461

Please sign in to comment.