Skip to content

Commit

Permalink
Fixes bug in copy manifest url
Browse files Browse the repository at this point in the history
  • Loading branch information
kdid committed Oct 10, 2024
1 parent 66809cb commit d1cde6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/useCopyToClipboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const useCopyToClipboard = (
);

return () => clearTimeout(timeoutId);
}, [copyStatus]);
}, []);

return [copyStatus, copy];
};

0 comments on commit d1cde6d

Please sign in to comment.