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 4fd4308 commit 089ca3fCopy full SHA for 089ca3f
src/components/debugSymbolConfig/debugSymbolConfig.tsx
@@ -1,8 +1,8 @@
1
'use client';
2
3
+import {Clipboard} from 'react-feather';
4
import {useState} from 'react';
5
import {Checkbox} from '@radix-ui/themes';
-import {Clipboard} from 'react-feather';
6
7
// Import CodeBlock for reference, but we'll implement our own version
8
// import {CodeBlock} from '../codeBlock';
@@ -66,7 +66,7 @@ export function DebugSymbolConfig({defaultOptions = ['dsym']}: DebugSymbolConfig
66
setCopied(true);
67
setTimeout(() => setCopied(false), 1200);
68
} catch (err) {
69
- console.error('Failed to copy: ', err);
+ // Silently handle errors - no console statements
70
}
71
};
72
0 commit comments