mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-25 01:01:32 +00:00
Remove unnecessary parens
This commit is contained in:
parent
b7713439bf
commit
624802c28e
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ define [
|
|||
.catch (err) ->
|
||||
$scope.state.inflight = false
|
||||
$scope.state.error = true
|
||||
if (err.status? and err.status == 400)
|
||||
if err.status? and err.status == 400
|
||||
$scope.state.errorReason = 'invalid_email'
|
||||
else
|
||||
$scope.state.errorReason = null
|
||||
|
|
Loading…
Reference in a new issue