Revert "Merge branch 'make_e2e_tests_work_again' into 'main'"

This reverts commit d84b7e3d14, reversing
changes made to 394e66683a.
This commit is contained in:
Massedil
2025-05-26 18:39:16 +02:00
committed by setop
parent a50681c9ac
commit a9cfcd9e9d
2 changed files with 3 additions and 14 deletions

View File

@@ -239,13 +239,7 @@ const loginAction = async (e: Event) => {
throw new Error("Loading user's identities failed");
}
// at some point this function was refactored to log errors rather than
// throwing them, which made the catch below useless. The second argument
// specifies that errors should be thrown instead of logged
await initializeCurrentActor(
currentUserIdentitiesResult.loggedUser.actors,
true
);
await initializeCurrentActor(currentUserIdentitiesResult.loggedUser.actors);
// Step 3a following
const loggedUserLocationResult = await loggedUserLocationPromise;