Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/Components/v2/design-elements/BasePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export const MonitorBasePageWithStates = ({
error={error}
{...props}
>
{priorityFallback}
<Stack height={"100%"}>{priorityFallback}</Stack>
</BasePage>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const BulletPointCheck = ({
<Check
size={16}
strokeWidth={1.5}
color={variant === "info" ? theme.palette.text.secondary : colors[variant]}
style={{
flexShrink: 0,
}}
Expand Down
16 changes: 16 additions & 0 deletions client/src/Hooks/useSetNewPasswordForm.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import {
setNewPasswordSchema,
type SetNewPasswordFormData,
} from "@/Validation/setNewPassword";

export const useSetNewPasswordForm = () => {
const defaults: SetNewPasswordFormData = {
password: "",
confirm: "",
};

return {
schema: setNewPasswordSchema,
defaults,
};
};
248 changes: 0 additions & 248 deletions client/src/Pages/Auth/CheckEmail.jsx

This file was deleted.

Loading