From 17e7885201c282a4be608ff090452736ae86d105 Mon Sep 17 00:00:00 2001 From: Reinamora Date: Fri, 5 Apr 2024 02:28:43 +0000 Subject: [PATCH] chore: remove duplicate get_stamp call --- routes/api/v2/cursed/[id].ts | 1 - 1 file changed, 1 deletion(-) diff --git a/routes/api/v2/cursed/[id].ts b/routes/api/v2/cursed/[id].ts index 6b1a637d8..13562d19b 100644 --- a/routes/api/v2/cursed/[id].ts +++ b/routes/api/v2/cursed/[id].ts @@ -50,7 +50,6 @@ export const handler = async ( let data; if (Number.isInteger(Number(id))) { data = await StampsClass.get_stamp_by_stamp_with_client(client, id); - data = await StampsClass.get_stamp_by_stamp_with_client(client, id); } else { data = await StampsClass.get_stamp_by_identifier_with_client(client, id); }