Skip to content

Commit 8cb4b1b

Browse files
Update part9c.md
Fixes case of import to import { newEntrySchema } from './utils'; from import { NewEntrySchema } from './utils';
1 parent f31cb9c commit 8cb4b1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/9/en/part9c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1654,7 +1654,7 @@ So besides the type _NewDiaryEntry_ we have also the Zod schema _NewEntrySchema_
16541654
16551655
```js
16561656
import { z } from 'zod';
1657-
import { NewEntrySchema } from './utils'
1657+
import { newEntrySchema } from './utils'
16581658

16591659
export interface DiaryEntry {
16601660
id: number;

0 commit comments

Comments
 (0)