Skip to content

Commit 41b86b0

Browse files
Jakob Schlanstedtwerererer
authored andcommitted
fix(typecheck-proven incorrectness): typecheck caught incorrectness through pnpm typecheck
1 parent 9d7bd16 commit 41b86b0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

apps/client/src/components/entrypoints.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default class Entrypoints extends Component {
2626

2727
async createNoteIntoInboxCommand() {
2828
await noteCreateService.createNote(
29-
{ target: "into" } as CreateNoteIntoInboxOpts
29+
{ target: "inbox" } as CreateNoteIntoInboxOpts
3030
);
3131
}
3232

apps/client/src/services/note_create.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ async function createNoteIntoInbox(
263263
const result = await createNoteWithUrl("into",
264264
{
265265
...options,
266+
target: "into",
266267
parentNoteUrl: inboxNote.noteId,
267268
} as CreateNoteWithUrlOpts
268269
);

0 commit comments

Comments
 (0)