Skip to content

Commit

Permalink
style(validation): handle pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneDOYON committed Dec 20, 2023
1 parent 16b2136 commit 199ebe1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/demo/src/app/login.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const config = {
},
},
formMeta: {
shouldDisplayRequiredHint: true,
shouldDisplayRequiredHint: false,
},
steps: {
'login-step-0': {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function FormField({

if (!Field) return null;

if (!validation || !validation?.required?.value) {
if (!validation?.required?.value) {
shouldDisplayRequiredHint = false;
}

Expand Down

0 comments on commit 199ebe1

Please sign in to comment.