From 1abc7ee26e8f8c9d05447dbe00ce869eb5959b6b Mon Sep 17 00:00:00 2001 From: pheralb Date: Thu, 21 Aug 2025 10:31:51 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Fixed=20eslint=20errors?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/figma/copy-to-clipboard.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/figma/copy-to-clipboard.ts b/src/figma/copy-to-clipboard.ts index cef999f..1257f96 100644 --- a/src/figma/copy-to-clipboard.ts +++ b/src/figma/copy-to-clipboard.ts @@ -18,8 +18,8 @@ export function copyToClipboard(value: string) { throw new Error(); } } - } catch (e) { - console.error(`Unable to copy the value: ${value}`); + } catch (error) { + console.error(`Unable to copy the value: ${value} - Error: ${error}`); return false; } return true;