Skip to content

Commit

Permalink
fix: App crashes if this check is not removed WIP
Browse files Browse the repository at this point in the history
TODO Find out the cause of the crash and solve it
  • Loading branch information
ptbrowne committed Oct 29, 2020
1 parent 515a3c1 commit 31b8fc8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Settings/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 31b8fc8

Please sign in to comment.