Skip to content

Commit 80793c7

Browse files
committed
bump next & friends
1 parent 68b09eb commit 80793c7

File tree

3 files changed

+222
-220
lines changed

3 files changed

+222
-220
lines changed

app/contact/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ export const metadata = addMetadata({
1717
},
1818
});
1919

20-
const send = async (prevState: ContactState, formData: FormData): Promise<ContactState> => {
20+
const send = async (state: ContactState, payload: FormData): Promise<ContactState> => {
2121
"use server";
2222

2323
// TODO: remove after debugging why automated spam entries are causing 500 errors
24-
console.debug("[contact form] received data:", formData);
24+
console.debug("[contact form] received payload:", payload);
2525

2626
if (!process.env.RESEND_API_KEY) {
2727
throw new Error("[contact form] 'RESEND_API_KEY' is not set.");
2828
}
2929

3030
try {
31-
const data = v.safeParse(ContactSchema, Object.fromEntries(formData));
31+
const data = v.safeParse(ContactSchema, Object.fromEntries(payload));
3232

3333
if (!data.success) {
3434
return {

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"@giscus/react": "^3.1.0",
2424
"@mdx-js/loader": "^3.1.0",
2525
"@mdx-js/react": "^3.1.0",
26-
"@next/bundle-analyzer": "15.3.0-canary.33",
27-
"@next/mdx": "15.3.0-canary.33",
26+
"@next/bundle-analyzer": "15.3.0-canary.39",
27+
"@next/mdx": "15.3.0-canary.39",
2828
"@octokit/graphql": "^8.2.1",
2929
"@octokit/graphql-schema": "^15.26.0",
3030
"@upstash/redis": "^1.34.6",
@@ -38,7 +38,7 @@
3838
"html-entities": "^2.6.0",
3939
"lucide-react": "0.487.0",
4040
"modern-normalize": "^3.0.1",
41-
"next": "15.3.0-canary.33",
41+
"next": "15.3.0-canary.39",
4242
"polished": "^4.3.1",
4343
"prop-types": "^15.8.1",
4444
"react": "19.1.0",
@@ -71,7 +71,7 @@
7171
},
7272
"devDependencies": {
7373
"@eslint/eslintrc": "^3.3.1",
74-
"@eslint/js": "^9.23.0",
74+
"@eslint/js": "^9.24.0",
7575
"@jakejarvis/eslint-config": "^4.0.7",
7676
"@types/comma-number": "^2.1.2",
7777
"@types/mdx": "^2.0.13",
@@ -82,13 +82,13 @@
8282
"@types/react-is": "^19.0.0",
8383
"babel-plugin-react-compiler": "19.0.0-beta-e993439-20250328",
8484
"cross-env": "^7.0.3",
85-
"eslint": "^9.23.0",
86-
"eslint-config-next": "15.3.0-canary.33",
85+
"eslint": "^9.24.0",
86+
"eslint-config-next": "15.3.0-canary.39",
8787
"eslint-config-prettier": "^10.1.1",
8888
"eslint-plugin-css-modules": "^2.12.0",
8989
"eslint-plugin-import": "^2.31.0",
9090
"eslint-plugin-jsx-a11y": "^6.10.2",
91-
"eslint-plugin-mdx": "^3.3.2",
91+
"eslint-plugin-mdx": "^3.4.0",
9292
"eslint-plugin-prettier": "^5.2.6",
9393
"eslint-plugin-react": "^7.37.5",
9494
"eslint-plugin-react-compiler": "19.0.0-beta-e993439-20250328",
@@ -97,11 +97,11 @@
9797
"lint-staged": "^15.5.0",
9898
"prettier": "^3.5.3",
9999
"schema-dts": "^1.1.5",
100-
"stylelint": "^16.17.0",
100+
"stylelint": "^16.18.0",
101101
"stylelint-config-css-modules": "^4.4.0",
102-
"stylelint-config-standard": "^37.0.0",
102+
"stylelint-config-standard": "^38.0.0",
103103
"stylelint-prettier": "^5.0.3",
104-
"typescript": "5.8.2"
104+
"typescript": "5.8.3"
105105
},
106106
"optionalDependencies": {
107107
"sharp": "^0.34.0"

0 commit comments

Comments
 (0)