From 1f82d821b0363f9c86d18bdb0c6d7033ce96d436 Mon Sep 17 00:00:00 2001 From: James Pepper Date: Thu, 8 Jan 2026 17:08:06 +0000 Subject: [PATCH] Potential fix for code scanning alert no. 2: Replacement of a substring with itself Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- app/transaction-explorer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/transaction-explorer.tsx b/app/transaction-explorer.tsx index 273b6272..be647188 100644 --- a/app/transaction-explorer.tsx +++ b/app/transaction-explorer.tsx @@ -140,7 +140,7 @@ export default function TransactionExplorerScreen() { minute: '2-digit', second: '2-digit', hour12: false, - }).replace(/\//g, '/'); + }); }; const copyToClipboard = async (text: string) => {