Skip to content

Commit

Permalink
remove template string
Browse files Browse the repository at this point in the history
  • Loading branch information
austenem committed Jul 22, 2024
1 parent e0fcfce commit e894e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion context/app/static/js/shared-styles/alerts/LoginAlert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function LoginAlert({ featureName }: LoginAlertProps) {
<Alert severity="info" action={<Button href="/login">Log in</Button>}>
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.`}
</Alert>
);
Expand Down

0 comments on commit e894e09

Please sign in to comment.