Skip to content

Commit

Permalink
chore: update magnito v0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
solufa committed Dec 25, 2024
1 parent 3231034 commit 9754fc7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/layouts/basicHeader/BasicHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const BasicHeader = (props: { user: UserDto }) => {
</Menu>
</div>
</div>
{openProfile && <YourProfile user={props.user} onClose={() => setOpenPassword(false)} />}
{openProfile && <YourProfile user={props.user} onClose={() => setOpenProfile(false)} />}
<Modal open={openPassword} onClose={() => setOpenPassword(false)}>
<ModalHeader text="Change password" />
<ModalBody>
Expand Down
1 change: 1 addition & 0 deletions client/layouts/basicHeader/YourProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ export const YourProfile = (props: { user: UserDto; onClose: () => void }) => {
value={totpCode}
onChange={(e) => setTotpCode(e.target.value)}
/>
<Spacer axis="y" size={8} />
<Button onClick={verifyTOTP}>Verify TOTP</Button>
</View>
) : (
Expand Down
2 changes: 1 addition & 1 deletion compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
magnito:
image: frourio/magnito:0.17.1
image: frourio/magnito:0.18.0
ports:
- 5050:5050
- 5051:5051
Expand Down

0 comments on commit 9754fc7

Please sign in to comment.