From 6d28ab40a823bd3c32d0560cd6c9362572c2637f Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Sun, 16 Mar 2025 00:19:24 +0000 Subject: [PATCH] Update signup popup message --- src/components/AuthenticationFlow/LoginPopup.astro | 2 +- src/components/GenerateCourse/UserCoursesList.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/AuthenticationFlow/LoginPopup.astro b/src/components/AuthenticationFlow/LoginPopup.astro index 8340ef3b4..04e19360e 100644 --- a/src/components/AuthenticationFlow/LoginPopup.astro +++ b/src/components/AuthenticationFlow/LoginPopup.astro @@ -7,7 +7,7 @@ import { AuthenticationForm } from './AuthenticationForm';

- Login to your account + Login or Signup

You must be logged in to perform this action. diff --git a/src/components/GenerateCourse/UserCoursesList.tsx b/src/components/GenerateCourse/UserCoursesList.tsx index a7f1e1bfb..798de8d5f 100644 --- a/src/components/GenerateCourse/UserCoursesList.tsx +++ b/src/components/GenerateCourse/UserCoursesList.tsx @@ -144,7 +144,7 @@ export function UserCoursesList(props: UserCoursesListProps) {

)} - {!isUserAiCoursesLoading && !isInitialLoading && courses.length === 0 && ( + {!isUserAiCoursesLoading && !isInitialLoading && courses.length === 0 && isAuthenticated && (

You haven't generated any courses yet.