refactor(ApiKeysPage): update the message displayed when there are no keys assigned to the user for better clarity and user experience

This commit is contained in:
anovazzi1 2023-08-25 19:31:24 -03:00
commit 8fda2e207c

View file

@ -106,7 +106,7 @@ export default function ApiKeysPage() {
{keysList.current.length === 0 && !loadingKeys && (
<>
<div className="flex items-center justify-between">
<h2>There's no users registered :)</h2>
<h2>This user does not have any keys assigned at the moment.</h2>
</div>
</>
)}