Remove copy button from images
This commit is contained in:
@@ -2,7 +2,7 @@ import { useState } from "react";
|
|||||||
import { ChatHeader } from "@/components/ChatHeader";
|
import { ChatHeader } from "@/components/ChatHeader";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
import { Textarea } from "@/components/ui/textarea";
|
import { Textarea } from "@/components/ui/textarea";
|
||||||
import { Download, Copy, Trash2, Sparkles, Clock, Search } from "lucide-react";
|
import { Download, Trash2, Sparkles, Clock, Search } from "lucide-react";
|
||||||
import { ScrollArea } from "@/components/ui/scroll-area";
|
import { ScrollArea } from "@/components/ui/scroll-area";
|
||||||
import { Input } from "@/components/ui/input";
|
import { Input } from "@/components/ui/input";
|
||||||
import {
|
import {
|
||||||
@@ -231,9 +231,6 @@ const ImageCard = ({ image, onDelete }: ImageCardProps) => {
|
|||||||
<Download className="w-3 h-3" />
|
<Download className="w-3 h-3" />
|
||||||
Baixar
|
Baixar
|
||||||
</Button>
|
</Button>
|
||||||
<Button size="sm" variant="secondary" className="gap-1">
|
|
||||||
<Copy className="w-3 h-3" />
|
|
||||||
</Button>
|
|
||||||
<Button
|
<Button
|
||||||
size="sm"
|
size="sm"
|
||||||
variant="destructive"
|
variant="destructive"
|
||||||
@@ -241,6 +238,7 @@ const ImageCard = ({ image, onDelete }: ImageCardProps) => {
|
|||||||
onClick={() => onDelete(image.id)}
|
onClick={() => onDelete(image.id)}
|
||||||
>
|
>
|
||||||
<Trash2 className="w-3 h-3" />
|
<Trash2 className="w-3 h-3" />
|
||||||
|
Excluir
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user