(args: { noteId?: string })
| 4110 | } |
| 4111 | |
| 4112 | function handleGetNote(args: { noteId?: string }) { |
| 4113 | const noteId = args.noteId; |
| 4114 | return ( |
| 4115 | [ |
| 4116 | ...getMockUserNotes(DEFAULT_MOCK_IDENTITY.pubkey), |
| 4117 | ...getMockUserNotes(ALICE_PUBKEY), |
| 4118 | ].find((note) => note.id === noteId) ?? null |
| 4119 | ); |
| 4120 | } |
| 4121 | |
| 4122 | function handleGetNoteReactions() { |
| 4123 | return []; |
no test coverage detected