Skip to content

Commit

Permalink
correcting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MaHaWo committed Oct 21, 2024
1 parent 9232751 commit a1c59f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions frontend/src/lib/components/UserDataInput.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
{#if showAlert}
<AlertMessage
title={$_('userData.alertMessageTitle')}
message={$_('userData.alertMessageMissing')}
message={alertMessage}
onclick={() => {
showAlert = false;
}}
Expand Down Expand Up @@ -107,10 +107,10 @@
}}
/>
{/each}
<Button
class="dark:bg-primay-700 bg-primary-700 hover:bg-primary-800 dark:hover:bg-primary-800 w-full text-center text-sm text-white hover:text-white"
type="submit">{$_('userData.submitButtonLabel')}</Button
>
</form>
<Button
class="dark:bg-primay-700 w-full bg-primary-700 text-center text-sm text-white hover:bg-primary-800 hover:text-white dark:hover:bg-primary-800"
type="submit">{$_('userData.submitButtonLabel')}</Button
>
</Card>
</div>
2 changes: 1 addition & 1 deletion mondey_backend/src/mondey_backend/routers/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from ..models.milestones import MilestoneAnswerPublic
from ..models.milestones import MilestoneAnswerSession
from ..models.milestones import MilestoneAnswerSessionPublic
from ..models.users import UserAnswerPublic
from ..models.questions import UserAnswerPublic
from ..models.users import UserRead
from ..models.users import UserUpdate
from ..settings import app_settings
Expand Down

0 comments on commit a1c59f9

Please sign in to comment.