Skip to content

Commit 5e98c5d

Browse files
authored
ref(getting-started): Fix fetchData retry (#13512)
1 parent ff5c74e commit 5e98c5d

File tree

1 file changed

+2
-2
lines changed
  • src/sentry/static/sentry/app/views/projectInstall

1 file changed

+2
-2
lines changed

src/sentry/static/sentry/app/views/projectInstall/platform.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ProjectInstallPlatform extends React.Component {
4646
return window.location.href.indexOf('getting-started') > 0;
4747
}
4848

49-
async fetchData() {
49+
fetchData = async () => {
5050
const {api, params} = this.props;
5151
const {orgId, projectId, platform} = params;
5252

@@ -60,7 +60,7 @@ class ProjectInstallPlatform extends React.Component {
6060
}
6161

6262
this.setState({loading: false});
63-
}
63+
};
6464

6565
redirectToNeutralDocs() {
6666
const {orgId, projectId} = this.props.params;

0 commit comments

Comments
 (0)