uploadNotebookToSupabase function
Implementation
Future<void> uploadNotebookToSupabase(String filePath, String studyId) async {
final file = File(filePath);
final fileName = p.basename(file.path);
await _uploadToSupabaseStorage(studyId, fileName, file, 'notebook-widgets');
}