From 2ee2a98c7d6a3a65abc0fc7eea2498f259d941bf Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sat, 14 Mar 2020 13:36:25 -0700 Subject: [PATCH] Set production slide time to 1 minute (matches Google hub). --- react-slideshow/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-slideshow/src/App.tsx b/react-slideshow/src/App.tsx index b2ac9e5..831bbb9 100644 --- a/react-slideshow/src/App.tsx +++ b/react-slideshow/src/App.tsx @@ -19,7 +19,7 @@ type Config = { let CONFIG: Config; if (process.env.NODE_ENV === 'production') { CONFIG = { - sleepTimeSeconds: 5 * 60, + sleepTimeSeconds: 60, showUI: false, } } else {