aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2025-06-04 22:07:39 -0400
committerbobzel <zzzman@gmail.com>2025-06-04 22:07:39 -0400
commit488451f04d42642f11975e9532542a78622b16ef (patch)
tree8dcdcf555fbb2875bcb75ebcfe9738a7fda9dc4a
parent59689fe94c27986674dd6ecb7f0e6073861a98a6 (diff)
parentbd75348c3ad851e05200cf138eaee3b4b349758f (diff)
Merge branch 'task_nodes_aarav' of https://github.com/brown-dash/Dash-Web into task_nodes_aarav
-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))} />;
}
}