Skip to content

Commit d125204

Browse files
committed
Switched private -> Public
1 parent b31a721 commit d125204

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

next-js-app/src/app/api/contact/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ async function getSubmissions(): Promise<Submission[]> {
3434

3535
async function saveSubmissions(data: Submission[]) {
3636
await put("submissions.json", JSON.stringify(data, null, 2), {
37-
access: "private",
37+
access: "public",
3838
addRandomSuffix: false, // Overwrite the existing blob
3939
cacheControlMaxAge: 0, // Ensure fresh data is always read
4040
});

0 commit comments

Comments
 (0)