From 592adb15d32e599a5296a42dc522bd73987cd686 Mon Sep 17 00:00:00 2001 From: Anthony Al Lazkani <anthonylazkani.22@gmail.com> Date: Wed, 25 Dec 2024 22:56:11 +0200 Subject: [PATCH] Set timeout for 15 minutes instead of 10 seconds --- frontend/src/components/URLShortener/URLShortener.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/URLShortener/URLShortener.tsx b/frontend/src/components/URLShortener/URLShortener.tsx index 6d73287..abf7517 100644 --- a/frontend/src/components/URLShortener/URLShortener.tsx +++ b/frontend/src/components/URLShortener/URLShortener.tsx @@ -48,7 +48,7 @@ export default function () { setTimeout(() => { setShowInput(false); - }, 10000); + }, 900000); } catch (error) { console.log(error); }