()
| 67 | } |
| 68 | |
| 69 | export async function fetchAllNotes(): Promise<NoteWithVideo[]> { |
| 70 | const response = await csrfFetch.get('/api/notes/all'); |
| 71 | |
| 72 | if (!response.ok) { |
| 73 | throw new Error('Failed to fetch all notes'); |
| 74 | } |
| 75 | |
| 76 | const data = await response.json(); |
| 77 | return (data.notes || []) as NoteWithVideo[]; |
| 78 | } |