Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
fbuireu committed Feb 1, 2025
1 parent b8a4bce commit 8320476
Show file tree
Hide file tree
Showing 5 changed files with 166 additions and 67 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"@hookform/resolvers": "^3.10.0",
"@million/lint": "^1.0.14",
"algoliasearch": "^5.20.0",
"astro": "^5.2.1",
"astro": "^5.2.3",
"clsx": "^2.1.1",
"contentful": "^11.4.4",
"gsap": "^3.12.7",
Expand All @@ -71,9 +71,9 @@
"react-google-recaptcha-v3": "^1.10.1",
"react-hook-form": "^7.54.2",
"react-instantsearch": "^7.15.3",
"react-router-dom": "^7.1.4",
"react-router-dom": "^7.1.5",
"resend": "^4.1.1",
"swiper": "^11.2.1",
"swiper": "^11.2.2",
"three": "^0.173.0",
"typescript": "^5.7.3",
"vanilla-cookieconsent": "^3.0.1",
Expand All @@ -85,15 +85,15 @@
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/format": "^19.5.0",
"@playwright/test": "^1.50.0",
"@playwright/test": "^1.50.1",
"@testing-library/react": "^16.2.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/add": "^2.0.3",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.12.0",
"@types/node": "^22.13.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/three": "^0.172.0",
"@types/three": "^0.173.0",
"conventional-changelog-atom": "^5.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const ContactForm = () => {
contactData.append("message", data.message);

const { data: response, error } = await actions.contact(contactData);

if (response?.ok) {
flyPlane(submitRef.current);
setTimeout(() => {
Expand Down
1 change: 1 addition & 0 deletions src/ui/modules/core/components/form/input/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export const Input = ({ id, type, placeholder, label, formStatus, hasError, erro
placeholder={placeholder}
className="contact-form__input"
disabled={formStatus === FormStatus.UNAUTHORIZED}
aria-describedby={hasError ? errorMessage: undefined}
{...rest}
/>
{label && id && (
Expand Down
1 change: 1 addition & 0 deletions src/ui/modules/core/components/form/textarea/Textarea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export const Textarea = ({
disabled={formStatus === FormStatus.UNAUTHORIZED}
placeholder={placeholder}
onKeyDown={autosize}
aria-describedby={hasError ? errorMessage: undefined}
{...rest}
/>
<label htmlFor={id} className="contact-form__textarea-label">
Expand Down
Loading

0 comments on commit 8320476

Please sign in to comment.