Skip to content

Commit

Permalink
fix: fix browser reload issues?
Browse files Browse the repository at this point in the history
Signed-off-by: Colton Wolkins (Laptop) <colton@indicio.tech>
  • Loading branch information
TheTechmage committed Apr 2, 2024
1 parent cebcd70 commit 3fe7094
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/wyvern/server-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,8 @@ function ServerLink({ agent, id, children, name, callback, styles }) {
event.stopPropagation();
}
console.log("Opening?", id);
return id ? openServer(agent, id) : callback()
id ? openServer(agent, id) : callback()
return false;
}
return (
<li className={["relative", styles].join(" ")}>
Expand Down

0 comments on commit 3fe7094

Please sign in to comment.