isLoggedIn
Return if a user is currently logged into the device
Returns a boolean representing if there is a customer identifier current associated with the device. In other words, Nami believes the device is logged into to an account.
let loggedIn = NamiCustomerManager.isLoggedIn()val loggedIn = NamiCustomerManager.isLoggedIn()var loggedIn = NamiCustomerManager.isLoggedIn();const checkIsLoggedIn = async () => {
const isLoggedIn = await NamiCustomerManager.isLoggedIn();
setIsUserLogin(isLoggedIn);
console.log('isLoggedIn', isLoggedIn);
};var isLoggedIn = NamiCustomerManager.IsLoggedIn;Last updated