Skip to content

Commit

Permalink
Skip federation selector on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
benthecarman committed Jun 24, 2024
1 parent 1379b4a commit da69c7f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/routes/setup/NewProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ export function NewProfile() {
);
console.log("profile", profile);
localStorage.setItem("profile_setup_stage", "skipped");
navigate("/addfederation");
// navigate("/addfederation");
navigate("/");
setSkipping(false);
}

Expand All @@ -46,7 +47,8 @@ export function NewProfile() {
);
console.log("profile", profile);
localStorage.setItem("profile_setup_stage", "saved");
navigate("/addfederation");
// navigate("/addfederation");
navigate("/");
} catch (e) {
console.error(e);
}
Expand Down

0 comments on commit da69c7f

Please sign in to comment.