From 2b72b9fddb77016b621ad8cfb21a96fe725d4814 Mon Sep 17 00:00:00 2001 From: Rob Hess Date: Fri, 2 Feb 2024 16:38:26 -0800 Subject: [PATCH] Update CS 494 topics. Add new HTTP communication lecture notes link. --- src/data/courses/w24/cs494/topics.js | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/src/data/courses/w24/cs494/topics.js b/src/data/courses/w24/cs494/topics.js index 7cadf0f5..82f14341 100644 --- a/src/data/courses/w24/cs494/topics.js +++ b/src/data/courses/w24/cs494/topics.js @@ -86,7 +86,6 @@ const topics = [ { title: 'Interacting with External Systems using Refs and Effects', weeks: [ 3 ], - isCurrent: true, resources: [ { title: 'Lecture notes', @@ -164,23 +163,19 @@ const topics = [ { title: 'Communicating with an HTTP API', weeks: [ 5 ], + isCurrent: true, resources: [ { title: 'Lecture notes', - link: 'https://docs.google.com/document/d/1Q7mF8c3psaiEPX2M2Dzd9Hkqoo60tpD8_XigrGAHShk/edit?usp=sharing' + link: 'https://docs.google.com/document/d/1d4Wmete9oVlyZfSPRxTOHY6-kQYfeVZPdPcpeKhm0Fs/edit?usp=sharing' }, - // { - // title: 'Example code', - // link: 'https://github.com/osu-cs494-w23/api-communication', - // description: 'GitHub repo for code written in lecture' - // }, - ], - readings: [ { - title: 'AJAX and APIs', - link: 'https://reactjs.org/docs/faq-ajax.html', - description: 'React Docs' + title: 'Example code', + link: 'https://github.com/osu-cs494-w24/api-communication', + description: 'GitHub repo for code written in lecture' }, + ], + readings: [ { title: 'How to fetch data with React Hooks', link: 'https://www.robinwieruch.de/react-hooks-fetch-data',