Skip to content
This repository has been archived by the owner on Jun 6, 2022. It is now read-only.

Commit

Permalink
Fix crash on import page
Browse files Browse the repository at this point in the history
  • Loading branch information
doZennn committed Sep 9, 2019
1 parent cfb0177 commit 9333799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/Import.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ class Import extends React.Component {
return (
<div key={i}>
<h5 style={this.context.theme.typographyStyles.subTitle}>{this.platforms[i].name}</h5>
<p>Error importing: {this.platforms[i].errorReason}</p>
<p>Error importing: {this.platforms[i].errorReason.message}</p>
</div>
);
}
Expand Down

0 comments on commit 9333799

Please sign in to comment.