Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasCode92 committed Dec 14, 2024
1 parent 0815dc8 commit a738d4f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ jobs:
node-version: "20.11.1"
- name: Load & cache dependencies
uses: ./.github/actions/cached-deps
with:
caching: "false"
- name: Run tests
run: npm test
build:
Expand All @@ -48,8 +46,6 @@ jobs:
- name: Load & cache dependencies
uses: ./.github/actions/cached-deps
id: chached-deps
- name: Output information
run: echo "Cache used? ${{ steps.chached-deps.outputs.used-cache }}"
- name: Build the application
run: npm run build
- name: Upload artifacts
Expand Down
2 changes: 1 addition & 1 deletion src/components/authentication/SignUpForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function SignUpForm() {
}

async function handleSubmit(event: FormEvent<HTMLFormElement>) {
event.preventDefault()
event.preventDefault();

if (formFields.password !== formFields.confirmPassword) {
return alert("Passwords do not match");
Expand Down

0 comments on commit a738d4f

Please sign in to comment.