fix: welcome modal bugs, about tab issues

This commit is contained in:
David Ralph
2022-04-18 19:50:16 +01:00
parent f8fbf9a7c7
commit 8f25df9827
17 changed files with 60 additions and 19 deletions

View File

@@ -215,7 +215,7 @@ export default class Quote extends PureComponent {
return this.setState({
quote: '"' + data[quotePackAPI.quote] + '"',
author,
authorimg: info.icon_url
authorimg: info.icon_url,
});
} catch (e) {
return this.doOffline();
@@ -237,7 +237,7 @@ export default class Quote extends PureComponent {
quote: '"' + data.quote + '"',
author: data.author,
authorlink: this.getAuthorLink(data.author),
authorimg: info.icon_url
authorimg: info.icon_url,
});
} else {
return this.doOffline();