We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef67978 commit 839c333Copy full SHA for 839c333
src/components/copyMarkdownButton.tsx
@@ -93,8 +93,8 @@ export function CopyMarkdownButton({pathname}: CopyMarkdownButtonProps) {
93
};
94
}, []);
95
96
- // Pre-fetch markdown content to avoid losing user gesture context
97
- // On iOS we can't async fetch on tap because the user gesture is lost by the time we try to update the clipboard.
+ // Pre-fetch markdown content to avoid losing user gesture context. On iOS we can't async
+ // fetch on tap because the user gesture is lost by the time we try to update the clipboard.
98
useEffect(() => {
99
if (!prefetchedContent) {
100
const prefetchContent = async () => {
0 commit comments