From 67269d95304368dd31363d6a3b392ec086e8b44b Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Wed, 2 Mar 2022 08:40:36 +0100 Subject: [PATCH] fix: change refresh interval from 1 to 0. At the moment, we only need to check the features once. There's no need to have things suddenly appear for users who have it loaded already. --- website/src/theme/Root.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/theme/Root.js b/website/src/theme/Root.js index 12d334db04..745d732470 100644 --- a/website/src/theme/Root.js +++ b/website/src/theme/Root.js @@ -12,7 +12,7 @@ function Root({ children }) { const unleashConfig = { clientKey: customFields.unleashProxyClientKey, url: customFields.unleashProxyUrl, - refreshInterval: 1, + refreshInterval: 0, appName: `docs.getunleash.io-${customFields.environment}`, };