Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
codeincontext committed Nov 15, 2024
1 parent 05ccce6 commit a59f7b4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import * as React from "react";
import { toast } from "react-hot-toast";

import { BellIcon } from "@radix-ui/react-icons";
import { useRouter } from "next/navigation";

import { ChatShareDialog } from "@/components/AppComponents/Chat/chat-share-dialog";
Expand Down Expand Up @@ -59,6 +60,7 @@ export function SidebarActions({ chat }: SidebarActionsProps) {
</TooltipTrigger>
<TooltipContent>Share chat</TooltipContent>
</Tooltip>
TEST
<Tooltip>
<TooltipTrigger asChild>
<Button
Expand All @@ -67,7 +69,7 @@ export function SidebarActions({ chat }: SidebarActionsProps) {
disabled={isRemovePending}
onClick={() => setDeleteDialogOpen(true)}
>
<IconTrash />
<BellIcon />
<span className="sr-only">Delete</span>
</Button>
</TooltipTrigger>
Expand Down

0 comments on commit a59f7b4

Please sign in to comment.