Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: account settings #451

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open

feat: account settings #451

wants to merge 19 commits into from

Conversation

phoebus-84
Copy link
Collaborator

@phoebus-84 phoebus-84 commented Sep 2, 2024

close: #314
fix: #452

@andrea-dintino
Copy link
Contributor

Tested it manually, all good @puria

@puria
Copy link
Member

puria commented Sep 6, 2024

ok once out of draft will merge

Comment on lines 90 to 115
{#if hasErrors}
{#if isBaseError($errors)}
<div class="space-y-1">
{#each $errors as error}
<d-text size="xs" class="text-error">{error}</d-text><br />
{/each}
</div>
{/if}

{#if isNestedError($errors)}
<div class="space-y-2">
{#each Object.entries($errors) as [key, errors]}
{#if isBaseError(errors)}
<div class="space-y-1">
{#if key !== '_errors'}
<d-text size="xs" class="text-error"><span class="font-bold">{key}</span></d-text>
{/if}
{#each errors as error}
<d-text size="xs" class="text-error">{error}</d-text><br />
{/each}
</div>
{/if}
{/each}
</div>
{/if}
{/if}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

may be this should be a component?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

fix registration tests new route for change profile user information
3 participants