From 119547f1ca92b3a5e29fed6981fd7bb23de720eb Mon Sep 17 00:00:00 2001 From: "alexandria.gomez" Date: Wed, 18 Oct 2023 13:56:28 -0400 Subject: [PATCH] update signin string, remove TODO --- .../components/LaserficheRepositoryAccessWebPart.tsx | 2 +- .../components/LaserficheAdminConfiguration.tsx | 2 +- .../components/SendToLaserficheLoginComponent.tsx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/webparts/LaserficheRepositoryAccessWebPart/components/LaserficheRepositoryAccessWebPart.tsx b/src/webparts/LaserficheRepositoryAccessWebPart/components/LaserficheRepositoryAccessWebPart.tsx index 584881d..e6c99db 100644 --- a/src/webparts/LaserficheRepositoryAccessWebPart/components/LaserficheRepositoryAccessWebPart.tsx +++ b/src/webparts/LaserficheRepositoryAccessWebPart/components/LaserficheRepositoryAccessWebPart.tsx @@ -143,7 +143,7 @@ export default function LaserficheRepositoryAccessWebPart( } } } catch (error) { - // TODO + return false; } return false; } diff --git a/src/webparts/laserficheAdminConfiguration/components/LaserficheAdminConfiguration.tsx b/src/webparts/laserficheAdminConfiguration/components/LaserficheAdminConfiguration.tsx index 7d6bcb9..4dff833 100644 --- a/src/webparts/laserficheAdminConfiguration/components/LaserficheAdminConfiguration.tsx +++ b/src/webparts/laserficheAdminConfiguration/components/LaserficheAdminConfiguration.tsx @@ -135,7 +135,7 @@ export default function LaserficheAdminConfiguration( } } } catch (error) { - // TODO + return false; } return false; } diff --git a/src/webparts/sendToLaserficheLoginComponent/components/SendToLaserficheLoginComponent.tsx b/src/webparts/sendToLaserficheLoginComponent/components/SendToLaserficheLoginComponent.tsx index 6aedc4b..b37ec8e 100644 --- a/src/webparts/sendToLaserficheLoginComponent/components/SendToLaserficheLoginComponent.tsx +++ b/src/webparts/sendToLaserficheLoginComponent/components/SendToLaserficheLoginComponent.tsx @@ -40,7 +40,7 @@ const YOU_MUST_BE_CLOUD_USER_TO_USE_WEB_PART = 'You must be a currently licensed Laserfiche Cloud user to use this web part.'; const FOR_MORE_INFO_VISIT = 'For more information visit'; -const needLaserficheSignInPage = `Sign in failed. Missing ${LASERFICHE_SIGNIN_PAGE_NAME} SharePoint page. Please refer to the Adding App to SharePoint Site topic in the administration guide for configuration steps.`; +const needLaserficheSignInPage = `Missing ${LASERFICHE_SIGNIN_PAGE_NAME} SharePoint page. Please refer to the Adding App to SharePoint Site topic in the administration guide for configuration steps.`; export default function SendToLaserficheLoginComponent( props: ISendToLaserficheLoginComponentProps ): JSX.Element { @@ -327,7 +327,7 @@ export default function SendToLaserficheLoginComponent( } } } catch (error) { - // TODO + return false; } return false; }