We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fa7b91 commit df5a823Copy full SHA for df5a823
src/graphql/schema.gql
@@ -622,6 +622,7 @@ type StrategyItem {
622
about: String
623
spacesCount: Int
624
verifiedSpacesCount: Int
625
+ override: Boolean
626
disabled: Boolean
627
}
628
src/helpers/strategies.ts
@@ -46,6 +46,7 @@ async function loadStrategies() {
46
strategy.id = strategy.key;
47
strategy.spacesCount = strategy.spacesCount || 0;
48
strategy.verifiedSpacesCount = strategy.verifiedSpacesCount || 0;
49
+ strategy.override = strategy.dependOnOtherAddress || false;
50
strategy.disabled = strategy.disabled || false;
51
return strategy;
52
})
0 commit comments