aboutsummaryrefslogtreecommitdiff
path: root/src/client/apis/AuthenticationManager.tsx
diff options
context:
space:
mode:
authorSam Wilkins <samwilkins333@gmail.com>2019-10-09 05:41:11 -0400
committerSam Wilkins <samwilkins333@gmail.com>2019-10-09 05:41:11 -0400
commit8f935493d8db08d4c1173f0dafb1fe7f2d414f54 (patch)
tree3ff28e877a1081b5cbb4da395cb20de5edebcc0c /src/client/apis/AuthenticationManager.tsx
parent507099b3fdcae2d6ade809594936566568a0f8de (diff)
semicolons
Diffstat (limited to 'src/client/apis/AuthenticationManager.tsx')
-rw-r--r--src/client/apis/AuthenticationManager.tsx4
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() {