diff --git a/satellite/console/service.go b/satellite/console/service.go index 396a234bc..546afa5c6 100644 --- a/satellite/console/service.go +++ b/satellite/console/service.go @@ -317,6 +317,7 @@ func (s *Service) UpdateAccount(ctx context.Context, info UserInfo) (err error) ShortName: info.ShortName, Email: email, PasswordHash: nil, + Status: auth.User.Status, }) if err != nil { return errs.New(internalErrMsg) diff --git a/web/satellite/src/App.vue b/web/satellite/src/App.vue index e65c9a34d..7accd9202 100644 --- a/web/satellite/src/App.vue +++ b/web/satellite/src/App.vue @@ -2,7 +2,7 @@ // See LICENSE for copying information.