From 1b3c0b81c4058ab153130170fcb83cd5476a2b5e Mon Sep 17 00:00:00 2001 From: Anil Vishnoi Date: Mon, 21 Oct 2024 23:59:32 -0700 Subject: [PATCH] Add more clarity to the inviter popup text Signed-off-by: Anil Vishnoi --- src/app/login/githublogin.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/login/githublogin.tsx b/src/app/login/githublogin.tsx index bcb2526f..7ffc93c1 100644 --- a/src/app/login/githublogin.tsx +++ b/src/app/login/githublogin.tsx @@ -23,7 +23,10 @@ const GithubLogin: React.FC = () => { const error = searchParams.get('error'); if (error === 'NotOrgMember') { const errorMessage = - 'You are not a member of the InstructLab Public org. Please join the InstructLab Public Organization on Github and try again.'; + 'You are not a member of the InstructLab Public Github Organization. \ + To access the InstructLab UI, you need to be a member of InstructLab Public Github Organization.\ + Please use the Send Invite button to receive an invitation to join the Organization. \ + Once you accept the invitation please try again to access the InstructLab UI.'; setErrorMsg(errorMessage); setShowError(true); } @@ -132,7 +135,7 @@ const GithubLogin: React.FC = () => {
handleOnClose()}