Swapping loose equality for strict

This commit is contained in:
brydon1 2023-09-06 12:42:05 -04:00
parent b0353cf7f7
commit 6043b0ce8f

View file

@ -124,7 +124,7 @@ router.afterEach(async (to, from) => {
// Update lastPageVisited in the store
store.updateLastPageVisited(to.name);
if (from.redirectedFrom == undefined){
if (from.redirectedFrom === undefined){
store.clearSaveSessionPromise();
}