From 143e81276bfbfc3b5f1e813abdd54faf84b828d8 Mon Sep 17 00:00:00 2001 From: dragongoose <19649813+dragongoose@users.noreply.github.com> Date: Wed, 29 Mar 2023 10:26:55 -0400 Subject: [PATCH] Format files --- src/components/TwitchChat.vue | 18 +++++++++++++++--- src/components/VideoPlayer.vue | 3 +-- src/views/HomepageView.vue | 30 ++++++++++++++++-------------- 3 files changed, 32 insertions(+), 19 deletions(-) diff --git a/src/components/TwitchChat.vue b/src/components/TwitchChat.vue index 5c312f4..d9c993f 100644 --- a/src/components/TwitchChat.vue +++ b/src/components/TwitchChat.vue @@ -15,7 +15,13 @@ export default { }, setup(props) { let messages: Ref< - { username: string; channel: string; message: string; messageType: string, tags: Record }[] + { + username: string + channel: string + message: string + messageType: string + tags: Record + }[] > = ref([]) let ws = new WebSocket('ws://localhost:7000') @@ -61,7 +67,10 @@ export default {