From b426182ac92361e0b6329763b960cffea883c7bd Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 7 Jan 2026 23:30:47 +0100 Subject: [PATCH] Remove unused variable in EntryPage.tsx --- client/src/pages/EntryPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/EntryPage.tsx b/client/src/pages/EntryPage.tsx index 05b5ab4..24d8098 100644 --- a/client/src/pages/EntryPage.tsx +++ b/client/src/pages/EntryPage.tsx @@ -40,7 +40,7 @@ export default function EntryPage() { const counts = entry.counts || { grammar: 0, vocab: 0, key_phrases: 0, conversation: 0, quiz: 0 }; const quizLink = `/quiz?mode=entry&id=${encodeURIComponent(entry.id)}`; const ig = entry.ig_meta; - const profileUrl = ig?.post_url || ig?.profile_url || (ig?.username ? `https://www.instagram.com/${ig.username}/` : undefined); + const profileUrl = ig?.profile_url || (ig?.username ? `https://www.instagram.com/${ig.username}/` : undefined); let postDate: string | undefined; if (ig?.post_date) { const parsed = new Date(ig.post_date);