mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05: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) ->
|
.catch (err) ->
|
||||||
$scope.state.inflight = false
|
$scope.state.inflight = false
|
||||||
$scope.state.error = true
|
$scope.state.error = true
|
||||||
if (err.status? and err.status == 400)
|
if err.status? and err.status == 400
|
||||||
$scope.state.errorReason = 'invalid_email'
|
$scope.state.errorReason = 'invalid_email'
|
||||||
else
|
else
|
||||||
$scope.state.errorReason = null
|
$scope.state.errorReason = null
|
||||||
|
|
Loading…
Reference in a new issue