From c0a391fe6b6a7c9b7c141f1fdf82a481553e11c2 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Wed, 30 Jul 2025 04:57:48 +0100 Subject: [PATCH] Update image on quote message --- .astro/types.d.ts | 1 - src/components/SQLCourse/AuthorQuoteMessage.tsx | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.astro/types.d.ts b/.astro/types.d.ts index 03d7cc43f..f964fe0cf 100644 --- a/.astro/types.d.ts +++ b/.astro/types.d.ts @@ -1,2 +1 @@ /// -/// \ No newline at end of file diff --git a/src/components/SQLCourse/AuthorQuoteMessage.tsx b/src/components/SQLCourse/AuthorQuoteMessage.tsx index 0d13f8245..0ac58dc9c 100644 --- a/src/components/SQLCourse/AuthorQuoteMessage.tsx +++ b/src/components/SQLCourse/AuthorQuoteMessage.tsx @@ -1,4 +1,4 @@ -import { Award, QuoteIcon, Trophy } from 'lucide-react'; +import { Award, Trophy } from 'lucide-react'; export function AuthorQuoteMessage() { return ( @@ -45,7 +45,7 @@ export function AuthorQuoteMessage() {
Kamran Ahmed