-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android minor fixes #285
Android minor fixes #285
Conversation
export type { Limit } from './Limit.model'; | ||
export type { Maker } from './Maker.model'; | ||
export { defaultMaker } from './Maker.model'; | ||
export type { Order } from './Order.model'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These was being displayed as warnings on the compiler logs
} catch { | ||
await torClient.reset(); | ||
return sendTorStatus(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
First attempt to try to automatically recover from a dead daemon
this.props.setAppState({ token }); | ||
this.setState({ token, loadingRobot: false }); | ||
this.setState({ token }); | ||
this.getGeneratedUser(token); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this will generate a new sessionid
, turns out I had my sessionid
on Android Studio outdated and this fix worked
@@ -245,6 +245,7 @@ class UserGenPage extends Component { | |||
width: `${201 * fontSizeFactor}px`, | |||
}} | |||
tooltip={t('This is your trading avatar')} | |||
tooltipPosition='up' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch 😄 . It happened to me and I did not know why!
It looks good! Thanks for these fixes. Ready to be merged 🚀 |
What does this PR do?
Fixes some minor errors on the Android app.
Checklist before merging
cd frontend; npm run format
. If it's a mobile app feature I rancd mobile; npm run format
.