Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 57e2109

Browse files
raksivjyecusch
andauthored
Apply suggestions from code review
Co-authored-by: Jye Cusch <[email protected]>
1 parent 3e289a7 commit 57e2109

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/guides/nodejs/survey-application.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Create an API route that validates and stores form submissions, then triggers fu
9292
```ts title:src/services/forms.ts
9393
import { api } from '@nitric/sdk'
9494
import { submissions, submitted } from '../resources/resources'
95-
import { SubmissionSchema } from '../form/schema'
95+
import { SubmissionSchema } from '.../forms/form/schema'
9696

9797
const formApi = api('forms')
9898

@@ -120,7 +120,7 @@ Listen for submitted events and generate a formatted PDF receipt from the stored
120120

121121
```ts title:src/services/pdfs.ts
122122
import { receipts, submissions, output } from '../resources/resources'
123-
import { buildReceipt } from '../form/receipt'
123+
import { buildReceipt } from '../forms/form/receipt'
124124

125125
receipts.subscribe(async (ctx) => {
126126
const { id } = ctx.req.json()

0 commit comments

Comments
 (0)