diff options
author | bobzel <zzzman@gmail.com> | 2025-06-04 21:44:43 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-06-04 21:44:43 -0400 |
commit | bd75348c3ad851e05200cf138eaee3b4b349758f (patch) | |
tree | 5c4fb4900320fbc5ceea965e8e12e3b7a29ed541 /src/client/apis/GoogleAuthenticationManager.tsx | |
parent | f7cb0dcebb0514cf38f8a7e635ec9959c196145a (diff) |
from last
Diffstat (limited to 'src/client/apis/GoogleAuthenticationManager.tsx')
-rw-r--r-- | src/client/apis/GoogleAuthenticationManager.tsx | 6 |
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))} />; } } |