Skip to content

Commit

Permalink
Apply lint correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
elland committed Oct 20, 2022
1 parent b7ad277 commit 19e2175
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions services/brig/src/Brig/Provider/API.hs
Original file line number Diff line number Diff line change
Expand Up @@ -724,10 +724,10 @@ deleteAccountH ::
deleteAccountH (pid ::: req) = do
guardSecondFactorDisabled Nothing
empty
<$ ( mapExceptT wrapHttpClient $
deleteAccount pid
=<< parseJsonBody req
)
<$ mapExceptT wrapHttpClient
$ ( deleteAccount pid
=<< parseJsonBody req
)

deleteAccount ::
( MonadReader Env m,
Expand Down

0 comments on commit 19e2175

Please sign in to comment.