@ -11,6 +11,7 @@
MATCHMAKING = "/matchmaking",
PROFILE_ID = "/profile_id",
}
</script>
<script lang="ts">
@ -226,6 +227,7 @@
on:add-friend={addFriend}
on:invite-to-game={pong.inviteToGame}
on:send-message={openDirectChat}
on:return-home={resetAppState}
/>
</div>
{/if}
@ -3,6 +3,8 @@
const showDialog = () => {
export interface ChannelsType {
id: number;
name: string;
@ -56,6 +56,7 @@
socket.disconnect();
});
//--------------------------------------------------------------------------------/
const sendMessage = () => {
@ -289,6 +290,7 @@
if ($content == 'ok') {
socket.emit("LeaveChanel", async (response) => {
console.log(response.status);
dispatch("return-home");