Skip to content

Commit

Permalink
Update UsersContainer.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
kokofixcomputers authored Oct 6, 2024
1 parent 863d7f2 commit cdccaf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/scripts/components/server/users/UsersContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ export default () => {
return (
<ServerContentBlock
title={'Users'}
description={'Add and remove users from your server.'}
description={'Add and remove subusers from your server.'}
showFlashKey={'users'}
>
{!subusers.length ? (
<p css={tw`text-center text-sm text-neutral-300`}>It looks like you don&apos;t have any subusers.</p>
<p css={tw`text-center text-sm text-neutral-300`}>It looks like this server doesn&apos;t have any subusers.</p>

Check failure on line 56 in resources/scripts/components/server/users/UsersContainer.tsx

View workflow job for this annotation

GitHub Actions / TypeScript

Replace `It·looks·like·this·server·doesn&apos;t·have·any·subusers.` with `⏎····················It·looks·like·this·server·doesn&apos;t·have·any·subusers.⏎················`
) : (
subusers.map((subuser) => <UserRow key={subuser.uuid} subuser={subuser} />)
)}
Expand Down

0 comments on commit cdccaf9

Please sign in to comment.