From 88ab6904567ceb783db3fa6f282cfdccf4bb9e86 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 1a9bcea..471b6df 100644 --- a/frontend/src/components/URLShortener/URLShortener.tsx +++ b/frontend/src/components/URLShortener/URLShortener.tsx @@ -47,7 +47,7 @@ export default function () { setTimeout(() => { setShowInput(false); - }, 10000); + }, 900000); } catch (error) { console.log(error); }