From 618ba3ae0201017d50e492dba97ff9687f0a290b Mon Sep 17 00:00:00 2001 From: Sergey Kurdin Date: Fri, 20 Jun 2025 23:12:58 -0400 Subject: [PATCH] chore: comment removed --- .../components/ClipboardHistory/ClipboardHistoryLargeView.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/pastebar-app-ui/src/pages/components/ClipboardHistory/ClipboardHistoryLargeView.tsx b/packages/pastebar-app-ui/src/pages/components/ClipboardHistory/ClipboardHistoryLargeView.tsx index d89180de..604ca5aa 100644 --- a/packages/pastebar-app-ui/src/pages/components/ClipboardHistory/ClipboardHistoryLargeView.tsx +++ b/packages/pastebar-app-ui/src/pages/components/ClipboardHistory/ClipboardHistoryLargeView.tsx @@ -217,7 +217,6 @@ export function ClipboardHistoryLargeViewComponent({ {tokens .filter((line, i) => { - // Remove last line if it's empty (only contains whitespace or newlines) if (i === tokens.length - 1) { return line.some(token => token.content.trim() !== '') }