aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/forms/subscribe_form.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/components/forms/subscribe_form.tsx')
-rw-r--r--packages/website/ts/components/forms/subscribe_form.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/website/ts/components/forms/subscribe_form.tsx b/packages/website/ts/components/forms/subscribe_form.tsx
index be0468b6f..ef19af644 100644
--- a/packages/website/ts/components/forms/subscribe_form.tsx
+++ b/packages/website/ts/components/forms/subscribe_form.tsx
@@ -114,8 +114,7 @@ export class SubscribeForm extends React.Component<SubscribeFormProps, Subscribe
const response = await backendClient.subscribeToNewsletterAsync(this.state.emailText);
const status = response.status === 200 ? SubscribeFormStatus.Success : SubscribeFormStatus.Error;
if (status === SubscribeFormStatus.Success) {
- // tslint:disable-next-line:no-floating-promises
- analytics.indentifyAsync(this.state.emailText, 'email');
+ analytics.indentify(this.state.emailText, 'email');
}
this.setState({ status, emailText: '' });
} catch (error) {