Skip to content

Commit

Permalink
print
Browse files Browse the repository at this point in the history
  • Loading branch information
annagav committed Oct 24, 2024
1 parent 276d735 commit eeab058
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion authentication/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ class RegisterEmailSerializer(SocialAuthSerializer):
next = serializers.CharField(write_only=True, required=False)

def validate(self, attrs):
print("here")
token = (attrs.get("partial", {}) or {}).get("token", None)
email = attrs.get("email", None)
if not email and not token:
Expand Down
2 changes: 1 addition & 1 deletion frontend/public/src/components/NotificationContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class NotificationContainer extends React.Component<Props, State> {

return (
<div
className="notifications order-2 tab-index-1"
className="notifications order-2"
id="notifications-container"
ref={this.headingRef}
>
Expand Down

0 comments on commit eeab058

Please sign in to comment.