aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2025-06-04 21:44:43 -0400
committerbobzel <zzzman@gmail.com>2025-06-04 21:44:43 -0400
commitbd75348c3ad851e05200cf138eaee3b4b349758f (patch)
tree5c4fb4900320fbc5ceea965e8e12e3b7a29ed541 /src
parentf7cb0dcebb0514cf38f8a7e635ec9959c196145a (diff)
from last
Diffstat (limited to 'src')
-rw-r--r--src/client/apis/GoogleAuthenticationManager.tsx6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/client/apis/GoogleAuthenticationManager.tsx b/src/client/apis/GoogleAuthenticationManager.tsx
index ffec07512..70e1ccc05 100644
--- a/src/client/apis/GoogleAuthenticationManager.tsx
+++ b/src/client/apis/GoogleAuthenticationManager.tsx
@@ -183,11 +183,7 @@ export class GoogleAuthenticationManager extends ObservableReactComponent<object
}
render() {
- return (
- <div className="hell">
- <MainViewModal isDisplayed={this.openState} interactive={true} contents={this.renderPrompt} dialogueBoxStyle={this.dialogueBoxStyle} overlayStyle={{ zIndex: 1001 }} closeOnExternalClick={action(() => (this.isOpen = false))} />
- </div>
- );
+ return <MainViewModal isDisplayed={this.openState} interactive={true} contents={this.renderPrompt} dialogueBoxStyle={this.dialogueBoxStyle} overlayStyle={{ zIndex: 1001 }} closeOnExternalClick={action(() => (this.isOpen = false))} />;
}
}