From e894e09f43e51d1e1264e6b50e0f8faea52e6229 Mon Sep 17 00:00:00 2001 From: Austen Money Date: Mon, 22 Jul 2024 09:53:52 -0400 Subject: [PATCH] remove template string --- context/app/static/js/shared-styles/alerts/LoginAlert.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context/app/static/js/shared-styles/alerts/LoginAlert.tsx b/context/app/static/js/shared-styles/alerts/LoginAlert.tsx index b3942439b9..3743bf4204 100644 --- a/context/app/static/js/shared-styles/alerts/LoginAlert.tsx +++ b/context/app/static/js/shared-styles/alerts/LoginAlert.tsx @@ -11,7 +11,7 @@ export default function LoginAlert({ featureName }: LoginAlertProps) { Log in}> You must be logged in to access {featureName}. {featureName === 'workspaces' - ? ` At present, access to ${featureName} is restricted to HuBMAP members and invited community members.` + ? ' At present, access to workspaces is restricted to HuBMAP members and invited community members.' : ` Access to ${featureName} is restricted to HuBMAP members at present.`} );