diff options
author | bobzel <zzzman@gmail.com> | 2025-06-04 22:07:39 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-06-04 22:07:39 -0400 |
commit | 488451f04d42642f11975e9532542a78622b16ef (patch) | |
tree | 8dcdcf555fbb2875bcb75ebcfe9738a7fda9dc4a /src | |
parent | 59689fe94c27986674dd6ecb7f0e6073861a98a6 (diff) | |
parent | bd75348c3ad851e05200cf138eaee3b4b349758f (diff) |
Merge branch 'task_nodes_aarav' of https://github.com/brown-dash/Dash-Web into task_nodes_aarav
Diffstat (limited to 'src')
-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))} />; } } |