Fix typos in error messages, constants, and UI labels

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-07 08:55:33 +08:00
parent 3693446d1b
commit 589783d481
6 changed files with 8 additions and 8 deletions

View File

@@ -253,7 +253,7 @@ export const useAcctMgmtStore = defineStore('acctMgmtStore', {
const response = await apiClient.delete(apiDeleteRole);
return response.status === 200;
} catch (error) {
apiError(error, 'Failed to delete a role frome the account.');
apiError(error, 'Failed to delete a role from the account.');
return false;
}
},