Skip to content

Commit

Permalink
Merge pull request #192 from Algoture/main
Browse files Browse the repository at this point in the history
update : sidebar variant and bug fixes
  • Loading branch information
SkidGod4444 authored Jan 24, 2025
2 parents 943c90e + db36e69 commit ba60ddc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions apps/app/components/custom/dashboard/chat-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const Chats: React.FC<ChatsProps> = ({ chats }) => {
</div>
</div>
</TableCell>
<TableCell className="hidden text-slate-200 md:table-cell">
<TableCell className="hidden md:table-cell">
{chat.status2}
</TableCell>
<TableCell>
Expand All @@ -72,7 +72,7 @@ export const Chats: React.FC<ChatsProps> = ({ chats }) => {
</div>
<div className="text-center">
<button
className="p-2 border rounded-lg text-slate-200 text-sm w-full bg-card"
className="p-2 border rounded-lg text-sm w-full bg-card"
onClick={() => setIsDropdownOpen((prev) => !prev)}>
{isDropdownOpen ? "View Less" : "View More"}
</button>
Expand Down
4 changes: 2 additions & 2 deletions apps/app/components/custom/dashboard/mail-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const MailTable = ({ mails }: MailTableProps) => {
{(isDropdownOpen ? mails : mails.slice(0, 5)).map((mail) => (
<TableRow key={mail.id}>
<TableCell className="px-2 md:px-4">{mail.Email}</TableCell>
<TableCell className="hidden text-slate-200 md:table-cell">
<TableCell className="hidden md:table-cell">
{mail.Source}
</TableCell>
<TableCell>{mail.date}</TableCell>
Expand All @@ -40,7 +40,7 @@ export const MailTable = ({ mails }: MailTableProps) => {
</div>
<div className="text-center">
<button
className="py-2 border w-full text-slate-200 text-sm rounded-xl bg-card"
className="py-2 border w-full text-sm rounded-xl bg-card"
onClick={() => setIsDropdownOpen((prev) => !prev)}
>
{isDropdownOpen ? "View Less" : "View More"}
Expand Down
2 changes: 1 addition & 1 deletion apps/app/components/custom/sidebar/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import QuickActionButton from "./quick-action-btn";
const items = [
{
title: "Dashboard",
url: "/home",
url: "/dashboard",
icon: Layers2,
},
{
Expand Down

0 comments on commit ba60ddc

Please sign in to comment.