Skip to content

Commit

Permalink
Merge pull request #40 from sayyyho/dev
Browse files Browse the repository at this point in the history
Fix: 소켓통신 테스트
  • Loading branch information
sayyyho authored Sep 6, 2024
2 parents 618c005 + d388fad commit ad6a800
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/SharePage/Share.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export const Share = () => {
const handleChatting = () => {
navigate(`/chatting/peer/${localStorage.getItem("chatroomUUID")}`);
};
const realUrl = "https://golang-ktb.site";
const realUrl = `https://golang-ktb.site/chatting/peer/${localStorage.getItem(
"chatroomUUID"
)}`;

// 재랜더링시에 실행되게 해준다.
useEffect(() => {
Expand Down Expand Up @@ -80,9 +82,7 @@ export const Share = () => {
gap: "10px",
cursor: "pointer",
}}
onClick={() => {
shareKakao();
}}
onClick={shareKakao}
>
<p
style={{
Expand Down

0 comments on commit ad6a800

Please sign in to comment.