Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
roznawsk committed Oct 7, 2024
1 parent daf2e65 commit 5143abc
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ function getPersistedValues() {
return {
defaultRoomManagerUrl: localStorage.getItem("roomManagerUrl") ?? "",
defaultRoomName: localStorage.getItem("roomName") ?? "",
defaultPeerName: sessionStorage.getItem("peerName") ?? localStorage.getItem("peerName") ?? "",
defaultPeerName:
sessionStorage.getItem("peerName") ??
localStorage.getItem("peerName") ??
"",
};
}

Expand Down

0 comments on commit 5143abc

Please sign in to comment.