fix: Text comparison should be done with `==` not via is.
`is` will check if two objects are the same whereas `==` will check if their values are the same which is what we want here.
Please register or sign in to comment
`is` will check if two objects are the same whereas `==` will check if their values are the same which is what we want here.