-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Fix formatting issues and add missing semicolons"
This reverts commit e4a3230.
- Loading branch information
Showing
109 changed files
with
983 additions
and
809 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Thanks for creating this pull request 🤗 | ||
|
||
Please make sure that the pull request is limited to one type (docs, feature, etc.) and keep it as small as possible. You can open multiple prs instead of opening a huge one. | ||
|
||
If this pull request closes an issue, please mention the issue number below. | ||
|
||
Closes # <!-- Issue # here --> | ||
|
||
## 📑 Description | ||
|
||
<!-- Add a brief description of the pr --> | ||
|
||
You can also choose to add a list of changes and if they have been completed or not by using the markdown to-do list syntax | ||
|
||
- [ ] Not Completed | ||
- [ x ] Completed | ||
|
||
## ✅ Checks | ||
|
||
<!-- Make sure your pr passes the CI checks and do check the following fields as needed - --> | ||
|
||
- [ ] My pull request adheres to the code style of this project | ||
- [ ] My code requires changes to the documentation | ||
- [ ] I have updated the documentation as required | ||
- [ ] All the tests have passed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
# Thanks for creating this pull request 🤗 | ||
|
||
Please make sure that the pull request is limited to one type (docs, feature, etc.) and keep it as small as possible. You can open multiple prs instead of opening a huge one. | ||
|
||
If this pull request closes an issue, please mention the issue number below. | ||
|
||
Closes # <!-- Issue # here --> | ||
|
||
## 📑 Description | ||
|
||
<!-- Add a brief description of the pr --> | ||
|
||
You can also choose to add a list of changes and if they have been completed or not by using the markdown to-do list syntax | ||
|
||
- [ ] Not Completed | ||
- [ x ] Completed | ||
|
||
## ✅ Checks | ||
|
||
<!-- Make sure your pr passes the CI checks and do check the following fields as needed - --> | ||
|
||
- [ ] My pull request adheres to the code style of this project | ||
- [ ] My code requires changes to the documentation | ||
- [ ] I have updated the documentation as required | ||
- [ ] All the tests have passed | ||
<!--- Provide a general summary of your changes in the Title above --> | ||
|
||
## Description | ||
<!--- Describe your changes in detail --> | ||
|
||
## Motivation and Context | ||
<!--- Why is this change required? What problem does it solve? --> | ||
<!--- If it fixes an open issue, please link to the issue here. --> | ||
|
||
## How has this been tested? | ||
<!--- Please describe in detail how you tested your changes. --> | ||
<!--- Include details of your testing environment, tests ran to see how --> | ||
<!--- your change affects other areas of the code, etc. --> | ||
|
||
## Screenshots (if appropriate): | ||
|
||
## Types of changes | ||
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> | ||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
|
||
## Checklist: | ||
<!--- Go over all the following points, and put an `x` in all the boxes that apply. --> | ||
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> | ||
- [ ] My code follows the code style of this project. | ||
- [ ] My change requires a change to the documentation. | ||
- [ ] I have updated the documentation accordingly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
import { ErrorCard } from "@/components/auth/error-card"; | ||
|
||
const AuthErrorPage = () => { | ||
return <ErrorCard />; | ||
return ( | ||
<ErrorCard /> | ||
); | ||
}; | ||
|
||
export default AuthErrorPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
const AuthLayout = ({ children }: { children: React.ReactNode }) => { | ||
return ( | ||
<div className="h-full flex items-center justify-center ">{children}</div> | ||
); | ||
}; | ||
|
||
export default AuthLayout; | ||
const AuthLayout = ({ | ||
children | ||
}: { | ||
children: React.ReactNode | ||
}) => { | ||
return ( | ||
<div className="h-full flex items-center justify-center "> | ||
{children} | ||
</div> | ||
); | ||
} | ||
|
||
export default AuthLayout; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
import { NewPasswordForm } from "@/components/auth/new-password-form"; | ||
|
||
const NewPasswordPage = () => { | ||
return <NewPasswordForm />; | ||
}; | ||
|
||
export default NewPasswordPage; | ||
return ( | ||
<NewPasswordForm /> | ||
); | ||
} | ||
|
||
export default NewPasswordPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
import { NewVerificationForm } from "@/components/auth/new-verification-form"; | ||
|
||
const NewVerificationPage = () => { | ||
return <NewVerificationForm />; | ||
}; | ||
|
||
export default NewVerificationPage; | ||
return ( | ||
<NewVerificationForm /> | ||
); | ||
} | ||
|
||
export default NewVerificationPage; |
Oops, something went wrong.