1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-14 00:19:16 +01:00

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.
This commit is contained in:
Thomas Heartman 2022-03-02 08:40:36 +01:00
parent c520e11892
commit 67269d9530

View File

@ -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}`,
};