From aa2f4539e787f47fbcdee6cf9179615cf9057a76 Mon Sep 17 00:00:00 2001 From: Anthony Al Lazkani 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 aea2750..85929f3 100644 --- a/frontend/src/components/URLShortener/URLShortener.tsx +++ b/frontend/src/components/URLShortener/URLShortener.tsx @@ -49,7 +49,7 @@ export default function URLShortener() { setTimeout(() => { setShowInput(false); - }, 10000); + }, 900000); } catch (error) { console.log(error); }