From 20cac727200e491aee614e78302eddd416c14b9b Mon Sep 17 00:00:00 2001 From: imgourav Date: Sun, 26 Oct 2025 11:13:31 +0530 Subject: [PATCH] fix: remove duplicate 'Change My Mind' entries in memesMeta.js - Merged two duplicate 'Change My Mind' entries into one comprehensive entry - Combined all captions from both entries for better variety: * 'Change my mind about coding' * 'Coffee vs Tea' * 'Coding is life' * 'Coffee > Tea' - Resolves data inconsistency issue in meme metadata - Improves code quality and maintainability - Fixes potential issues with meme template selection This addresses the duplicate key issue that could cause unpredictable behavior when accessing meme metadata through the memesMeta object. --- src/memesMeta.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/memesMeta.js b/src/memesMeta.js index 2f6d3903..777f36e5 100644 --- a/src/memesMeta.js +++ b/src/memesMeta.js @@ -18,7 +18,7 @@ const memesMeta = { "Change My Mind": { description: "Man at table with sign", keywords: ["table", "sign", "change my mind"], - captions: ["Change my mind about coding", "Coffee vs Tea"] + captions: ["Change my mind about coding", "Coffee vs Tea", "Coding is life", "Coffee > Tea"] }, "Expanding Brain": { description: "Increasingly enlightened brain levels", @@ -70,11 +70,6 @@ const memesMeta = { keywords: ["thinking", "smart", "plan"], captions: ["Can't fail if you don't try", "Use logic"] }, - "Change My Mind": { - description: "Man at table with a sign", - keywords: ["table", "sign", "change my mind"], - captions: ["Coding is life", "Coffee > Tea"] - }, "This Is Fine": { description: "Dog sitting in fire saying 'This is fine'", keywords: ["dog", "fire", "fine"],