From 60112c3a0ae1c8322221d3228ae150d6fd45c41e Mon Sep 17 00:00:00 2001 From: Victor Chukwuebuka Umeh <41862157+vyktoremario@users.noreply.github.com> Date: Tue, 17 Oct 2023 15:58:12 +0100 Subject: [PATCH] fix: Broken link, wrong image for graphql course --- packages/site/src/data/graphql/courses.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/site/src/data/graphql/courses.ts b/packages/site/src/data/graphql/courses.ts index a0aa258d..b01aad33 100644 --- a/packages/site/src/data/graphql/courses.ts +++ b/packages/site/src/data/graphql/courses.ts @@ -294,13 +294,13 @@ export const courses: Course<(typeof courseTags)[number]>[] = [ { title: 'Intro to GraphQL DataLoaders', author: 'Star Richardson', - image: 'https://avatars.githubusercontent.com/u/67430892?v=4', + image: 'https://pbs.twimg.com/profile_images/1249804296469778433/uRRNm6-n_400x400.png', description: "How to implement DataLoaders in your GraphQL project. We'll walk through setup and configuration, and build a simple API to demonstrate how GraphQL DataLoaders can dramatically reduce duplicate API calls.", paymentType: 'free', level: 'intermediate', format: 'video', - href: 'www.youtube.com/watch?v=Zc6xv5bcky8', + href: 'https://www.youtube.com/watch?v=Zc6xv5bcky8', tags: ['data fetching', 'graphQL', 'javascript marathon', 'services'], }, ]