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
8 changes: 1 addition & 7 deletions frontend/src/components/UserSettings/DeleteAccount.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,7 @@ const DeleteAccount: React.FC = () => {
Permanently delete your data and everything associated with your
account.
</Text>
<Button
bg="ui.danger"
color="white"
_hover={{ opacity: 0.8 }}
mt={4}
onClick={confirmationModal.onOpen}
>
<Button variant="danger" mt={4} onClick={confirmationModal.onOpen}>
Delete
</Button>
<DeleteConfirmation
Expand Down
8 changes: 1 addition & 7 deletions frontend/src/routes/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,7 @@ function Login() {
Forgot password?
</Link>
</Center>
<Button
bg="ui.main"
color="white"
_hover={{ opacity: 0.8 }}
type="submit"
isLoading={isSubmitting}
>
<Button variant="primary" type="submit" isLoading={isSubmitting}>
Log In
</Button>
</Container>
Expand Down
8 changes: 1 addition & 7 deletions frontend/src/routes/recover-password.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,7 @@ function RecoverPassword() {
<FormErrorMessage>{errors.email.message}</FormErrorMessage>
)}
</FormControl>
<Button
bg="ui.main"
color="white"
_hover={{ opacity: 0.8 }}
type="submit"
isLoading={isSubmitting}
>
<Button variant="primary" type="submit" isLoading={isSubmitting}>
Continue
</Button>
</Container>
Expand Down
7 changes: 1 addition & 6 deletions frontend/src/routes/reset-password.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,7 @@ function ResetPassword() {
<FormErrorMessage>{errors.confirm_password.message}</FormErrorMessage>
)}
</FormControl>
<Button
bg="ui.main"
color="white"
_hover={{ opacity: 0.8 }}
type="submit"
>
<Button variant="primary" type="submit">
Reset Password
</Button>
</Container>
Expand Down