Skip to content

Commit 02d7acb

Browse files
committed
fix: cursor pointer in the copy url button
1 parent 750c526 commit 02d7acb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/app/catalog/components/server-card.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ export function ServerCard({ server, serverUrl, onClick }: ServerCardProps) {
4141
<p className="line-clamp-3 text-sm leading-[18px] text-muted-foreground cursor-pointer">
4242
{description || "No description available"}
4343
</p>
44-
{serverUrl && <CopyUrlButton url={serverUrl} className="w-fit" />}
44+
{serverUrl && (
45+
<CopyUrlButton url={serverUrl} className="w-fit cursor-pointer" />
46+
)}
4547
</CardContent>
4648
</Card>
4749
);

0 commit comments

Comments
 (0)