fix(UX): Change the Available/Unavailable to Yes/No label o (#16176)

pull/16178/head
Anh Tran 2017-12-10 23:15:58 -05:00 committed by mrugesh mohapatra
parent 87ac2e0e9e
commit 127fae59f4
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ export default function JobSettings({ isAvailableForHire, toggle }) {
className={ className }
onClick={ toggle }
>
{ isAvailableForHire ? 'Available' : 'Unavailable' }
{ isAvailableForHire ? 'Yes' : 'No' }
</Button>
</Col>
</Row>