From 73fdeb07fd8317e2491286abe001196607c01e85 Mon Sep 17 00:00:00 2001 From: Felix Eckhofer <felix@eckhofer.com> Date: Fri, 20 Dec 2024 21:20:45 +0100 Subject: [PATCH] Hide email in profile as well We're not using it, so its just confusing. --- app/views/devise/registrations/edit.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/devise/registrations/edit.html.erb b/app/views/devise/registrations/edit.html.erb index c8cc821..5af56b7 100644 --- a/app/views/devise/registrations/edit.html.erb +++ b/app/views/devise/registrations/edit.html.erb @@ -9,7 +9,7 @@ <%= f.text_field :name, autofocus: true, autocomplete: "username" %> </div> - <div class="field"> + <div class="field hidden"> <%= f.label :email %><br /> <%= f.email_field :email, autocomplete: "email" %> </div> -- GitLab