diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2019-10-09 05:41:11 -0400 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-10-09 05:41:11 -0400 |
commit | 8f935493d8db08d4c1173f0dafb1fe7f2d414f54 (patch) | |
tree | 3ff28e877a1081b5cbb4da395cb20de5edebcc0c /src | |
parent | 507099b3fdcae2d6ade809594936566568a0f8de (diff) |
semicolons
Diffstat (limited to 'src')
-rw-r--r-- | src/client/apis/AuthenticationManager.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/apis/AuthenticationManager.tsx b/src/client/apis/AuthenticationManager.tsx index 7d8d4f534..360554b8e 100644 --- a/src/client/apis/AuthenticationManager.tsx +++ b/src/client/apis/AuthenticationManager.tsx @@ -70,7 +70,7 @@ export default class AuthenticationManager extends React.Component<{}> { private handlePaste = action((e: React.ChangeEvent<HTMLInputElement>) => { this.authenticationCode = e.currentTarget.value; - }) + }); private get renderPrompt() { return ( @@ -82,7 +82,7 @@ export default class AuthenticationManager extends React.Component<{}> { style={{ marginTop: 15 }} /> : (null)} </div> - ) + ); } render() { |