We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1c7581 commit 84dd4feCopy full SHA for 84dd4fe
2 files changed
src/components/Copy/index.tsx
@@ -35,12 +35,13 @@ const Copy: React.FC<CopyProps> = ({ content }) => {
35
36
return (
37
<Tooltip>
38
- <TooltipTrigger asChild tabIndex={-1}>
+ <TooltipTrigger asChild>
39
<Button
40
variant='ghost'
41
disabled={!content}
42
size='icon'
43
onClick={handleCopy}
44
+ tabIndex={-1}
45
>
46
{copied ? <Check /> : <CopyIcon />}
47
</Button>
src/components/Playlist/index.tsx
@@ -156,7 +156,7 @@ const Playlist: React.FC<Props> = () => {
156
content={songsInfo}
157
action={(content, loaded) => (
158
159
- <TooltipTrigger tabIndex={-1}>
+ <TooltipTrigger tabIndex={-1} asChild>
160
161
162
0 commit comments