Fix text messages for ANY

This commit is contained in:
Reckless_Satoshi 2022-01-09 13:45:02 -08:00
parent 6400921f48
commit c08c76b7d8
No known key found for this signature in database
GPG Key ID: 9C4585B561315571

View File

@ -173,7 +173,7 @@ export default class BookPage extends Component {
{ this.state.not_found ? "" : { this.state.not_found ? "" :
<Grid item xs={12} align="center"> <Grid item xs={12} align="center">
<Typography component="h5" variant="h5"> <Typography component="h5" variant="h5">
You are {this.state.type == 0 ? " selling " : " buying "} BTC for {this.state.currencyCode} You are {this.state.type == 0 ? " buying " : (this.state.type == 1 ? " selling ":" checking ")} BTC for {this.state.currencyCode}
</Typography> </Typography>
</Grid> </Grid>
} }