when i try parse a JSON stringify return a error, this is de code.
async componentDidMount(){
const Data = await Storage.get({ key: "Login" })
const Json = JSON.parse( Data.value );
}
Argument of type ‘string | null’ is not assignable to parameter of type ‘string’.
Type ‘null’ is not assignable to type ‘string’.ts(2345)