Service Accounts: Fix typo on page indicating none are present (#109560)

* Fix typo for empty state service accounts

* update i18n file

---------

Co-authored-by: Mihaly Gyongyosi <mgyongyosi@users.noreply.github.com>
This commit is contained in:
Éamon Ryan
2025-08-13 20:53:19 +02:00
committed by GitHub
co-authored by Mihaly Gyongyosi
parent 73a1320334
commit f1dd6db456
2 changed files with 2 additions and 2 deletions
@@ -225,7 +225,7 @@ export const ServiceAccountsListPageUnconnected = ({
{!isLoading && !noServiceAccountsCreated && serviceAccounts.length === 0 && (
<EmptyState
variant="not-found"
message={t('service-accounts.empty-state.message', 'No services accounts found')}
message={t('service-accounts.empty-state.message', 'No service accounts found')}
/>
)}
{!isLoading && noServiceAccountsCreated && (
+1 -1
View File
@@ -12113,7 +12113,7 @@
"service-accounts": {
"empty-state": {
"button-title": "Add service account",
"message": "No services accounts found",
"message": "No service accounts found",
"more-info": "Remember, you can provide specific permissions for API access to other applications",
"title": "You haven't created any service accounts yet"
}