wixMember not working after initial login until refresh

i managed to resolve this after I checked some videos and threads. I installed the following on my masterpage.

import { authentication } from ‘wix-members’;
import wixLocation from ‘wix-location’;

$w.onReady(async () => {
authentication.onLogin(() => {
wixLocation.to(wixLocation.url);
});
});

1 Like