diff --git a/deployment/helmchart/CHANGELOG.md b/deployment/helmchart/CHANGELOG.md
index 74878e1d6fdedd2ec50248899840cea6c1619733..6b91dd7441d9616293114236e65bf0f7fb2a09d5 100644
--- a/deployment/helmchart/CHANGELOG.md
+++ b/deployment/helmchart/CHANGELOG.md
@@ -1,5 +1,5 @@
-# [1.0.0]
+# [1.0.1]
 
 ## Bug fixes
 
-*  Resolve "New dashboard user management blocks all apps for admin user" #61
+*  Resolve "App access role is not persistent" #63
diff --git a/deployment/helmchart/Chart.yaml b/deployment/helmchart/Chart.yaml
index 652667c8257a793126120f7af065cf0e8892ed40..d851ec1c2ce55ff05b419230dbe71e8e985a110d 100644
--- a/deployment/helmchart/Chart.yaml
+++ b/deployment/helmchart/Chart.yaml
@@ -1,7 +1,7 @@
 annotations:
   category: Dashboard
 apiVersion: v2
-appVersion: 0.2.4
+appVersion: 0.2.5
 dependencies:
   - name: common
     # https://artifacthub.io/packages/helm/bitnami/common
@@ -23,4 +23,4 @@ name: stackspin-dashboard
 sources:
   - https://open.greenhost.net/stackspin/dashboard/
   - https://open.greenhost.net/stackspin/dashboard-backend/
-version: 1.0.0
+version: 1.0.1
diff --git a/src/components/Form/Input/Input.tsx b/src/components/Form/Input/Input.tsx
index aa7cdd4d4498b52371746b761d2d8256b6c0ba7f..91d593368492f886b390548fee4443ae6c4696f3 100644
--- a/src/components/Form/Input/Input.tsx
+++ b/src/components/Form/Input/Input.tsx
@@ -2,7 +2,7 @@ import React from 'react';
 import { useController } from 'react-hook-form';
 
 /* eslint-disable react/react-in-jsx-scope */
-export const Input = ({ control, name, type = 'text', label, ...props }: InputProps) => {
+export const Input = ({ control, name, type = 'text', label, required, ...props }: InputProps) => {
   const {
     field,
     // fieldState: { invalid, isTouched, isDirty },
@@ -10,7 +10,7 @@ export const Input = ({ control, name, type = 'text', label, ...props }: InputPr
   } = useController({
     name,
     control,
-    rules: { required: true },
+    rules: { required },
     defaultValue: '',
   });
 
diff --git a/src/components/UserModal/UserModal.tsx b/src/components/UserModal/UserModal.tsx
index 00fcb9bb9c4cf63b9fdc4813fb7e9d8624e9f394..bafc99b09202ef44a25540255287eb1711184a15 100644
--- a/src/components/UserModal/UserModal.tsx
+++ b/src/components/UserModal/UserModal.tsx
@@ -116,11 +116,18 @@ export const UserModal = ({ open, onClose, userId, setUserId }: UserModalProps)
 
               <div className="mt-6 grid grid-cols-1 gap-y-6 gap-x-4 sm:grid-cols-6">
                 <div className="sm:col-span-3">
-                  <Input control={control} name="name" label="Name" onKeyPress={handleKeyPress} />
+                  <Input control={control} name="name" label="Name" onKeyPress={handleKeyPress} required={false} />
                 </div>
 
                 <div className="sm:col-span-3">
-                  <Input control={control} name="email" label="Email" type="email" onKeyPress={handleKeyPress} />
+                  <Input
+                    control={control}
+                    name="email"
+                    label="Email"
+                    type="email"
+                    onKeyPress={handleKeyPress}
+                    required
+                  />
                 </div>
                 {isAdmin && (
                   <>