Skip to content

Commit

Permalink
Disable currency picker while VBA state is loading
Browse files Browse the repository at this point in the history
  • Loading branch information
amyevans committed May 26, 2022
1 parent 30e79ff commit 8423bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/workspace/WorkspaceSettingsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ class WorkspaceSettingsPage extends React.Component {
onInputChange={currency => this.setState({currency})}
items={this.getCurrencyItems()}
value={this.state.currency}
isDisabled={hasVBA}
isDisabled={isLoadingVBA || hasVBA}
/>
</View>
<Text style={[styles.textLabel, styles.colorMuted, styles.mt2]}>
Expand Down

0 comments on commit 8423bb4

Please sign in to comment.