🛠️ Fixed eslint errors

This commit is contained in:
pheralb
2025-08-21 10:31:51 +01:00
parent d32667051d
commit 1abc7ee26e
+2 -2
View File
@@ -18,8 +18,8 @@ export function copyToClipboard(value: string) {
throw new Error(); throw new Error();
} }
} }
} catch (e) { } catch (error) {
console.error(`Unable to copy the value: ${value}`); console.error(`Unable to copy the value: ${value} - Error: ${error}`);
return false; return false;
} }
return true; return true;