From 31b8fc83abcce45e6de040f3c9721033beac9d72 Mon Sep 17 00:00:00 2001 From: Patrick Browne Date: Mon, 19 Oct 2020 09:14:50 +0200 Subject: [PATCH] fix: App crashes if this check is not removed WIP TODO Find out the cause of the crash and solve it --- src/components/Settings/index.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Settings/index.jsx b/src/components/Settings/index.jsx index e5cbb1232..5504fafdf 100644 --- a/src/components/Settings/index.jsx +++ b/src/components/Settings/index.jsx @@ -101,7 +101,8 @@ export class Settings extends Component { let isFetchingFromQueries let viewOfferButtonText = '' const canCheckPremium = cozyClientCanCheckPremium() - if (canCheckPremium) { + if (false && canCheckPremium) { + // console.log() isFetchingFromQueries = isFetchingQueries([ diskUsageQuery, instanceQuery,