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 19, 2020
1 parent 0f8f01d commit 1435935
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 1435935

Please sign in to comment.