From 7dddae633ad5256f445f8de5af8b2d75b09c9e85 Mon Sep 17 00:00:00 2001 From: Satoshi Qazi Muhammed Date: Sat, 20 Jun 2026 18:28:38 -0700 Subject: [PATCH] identity: remove unused issueDate const (lint fix) --- web/src/pages/Identity.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/web/src/pages/Identity.tsx b/web/src/pages/Identity.tsx index 21de58ff..812778b2 100644 --- a/web/src/pages/Identity.tsx +++ b/web/src/pages/Identity.tsx @@ -56,7 +56,6 @@ function formatMRZ(data: IdentityData): [string, string] { } const today = new Date(); -const issueDate = today.toLocaleDateString('en-GB', { day: '2-digit', month: '2-digit', year: 'numeric' }); const expiryDate = new Date(today.getFullYear() + 10, today.getMonth(), today.getDate()) .toLocaleDateString('en-GB', { day: '2-digit', month: '2-digit', year: 'numeric' });