We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bded7b0 commit c0154b7Copy full SHA for c0154b7
src/component/Sidebar.js
@@ -1,5 +1,5 @@
1
import React, { useState } from 'react';
2
-import Papa from 'papaparse';// Make sure to install papaparse with command 'npm install papaparse'
+import Papa from 'papaparse';
3
import { useRouter } from 'next/router';
4
5
const Sidebar = () => {
@@ -28,7 +28,6 @@ const Sidebar = () => {
28
29
// Function to fetch conference data from CSV file
30
const fetchConferences = () => {
31
- // Replace the URL with the correct path to your CSV file
32
fetch('https://raw.githubusercontent.com/cncf-tags/cloud-native-ai/main/cncf-youtube-channel-summarizer/data/sample_cncf_video_summary.csv')
33
.then((response) => {
34
if (!response.ok) {
0 commit comments