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

This commit is contained in:
Anh Tran
2017-12-10 23:15:58 -05:00
committed by mrugesh mohapatra
parent 87ac2e0e9e
commit 127fae59f4

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>