Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
server.log

# env files (can opt-in for committing if needed)
.env*
Expand Down
3 changes: 0 additions & 3 deletions src/app/api/submit/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ export async function POST(request: NextRequest) {
try {
const body = await request.json();

// Throw an intentional exception
throw new Error("Intentional API route error - this is a test exception");

// Log the form data
console.log("Form submission received:", {
timestamp: new Date().toISOString(),
Expand Down