Skip to content

Commit

Permalink
err
Browse files Browse the repository at this point in the history
  • Loading branch information
Shahan-nub committed Oct 24, 2024
1 parent 15eefe4 commit bcdf98c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/layout.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Inter } from "next/font/google";
import "./globals.css";
// import Sidebar from "@/components/Sidebar/Sidebar";
import { Roboto } from '@next/font/google';
import { Roboto } from 'next/font/google';

const inter = Inter({ subsets: ["latin"] });

Expand Down
2 changes: 1 addition & 1 deletion src/components/Chat/Message.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function Message({ messageInfo }) {
</p>
</div>
{message && <p className="text-xs lg:text-[15px] font-extralight text-slate-200">{message}</p>}
{uploadedFile && <img src={uploadedFile} alt="uploaded img" width={500} height={500} className="rounded-lg w-[35%]"/>}
{uploadedFile && <Image src={uploadedFile} alt="uploaded img" width={500} height={500} className="rounded-lg w-[35%]"/>}
</div>
</div>
);
Expand Down

0 comments on commit bcdf98c

Please sign in to comment.