Skip to content

Commit

Permalink
fix(backend): fix notes/create validation
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Sep 29, 2023
1 parent ac19b05 commit 961f5a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/server/api/endpoints/notes/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const paramDef = {
type: 'string',
minLength: 1,
maxLength: MAX_NOTE_TEXT_LENGTH,
nullable: false,
nullable: true,
},
fileIds: {
type: 'array',
Expand Down

0 comments on commit 961f5a0

Please sign in to comment.