Bugfix: Fix copy in agent availability status (#466)

Copy update for agent status
This commit is contained in:
Pranav Raj S 2020-02-05 11:56:33 +05:30 committed by GitHub
parent 83b0bb4062
commit 607fc25723
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

View file

@ -10,7 +10,7 @@ describe('#getAvailableAgentsText', () => {
it('returns the correct text is there are two online agents', () => {
expect(
getAvailableAgentsText([{ name: 'Pranav' }, { name: 'Nithin' }])
).toEqual('Pranav and Nithin is available');
).toEqual('Pranav and Nithin are available');
});
it('returns the correct text is there are more than two online agents', () => {