Skip to content

Commit

Permalink
Merge pull request #733 from CodeCrowCorp/dev
Browse files Browse the repository at this point in the history
Fix: slash commands
  • Loading branch information
gagansuie authored Sep 30, 2023
2 parents 8e31f65 + 63c7d45 commit 54d0700
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mage-website",
"version": "0.1.03",
"version": "0.1.04",
"license": "GPL-3.0",
"private": true,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/Channel/Chat/ChatInput.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
$: isHost = channel.user === $page.data.user?.userId
$: viewersWithOutHost = viewers.filter(
(viewer) => viewer.userId !== channel.user && viewer.userId === 'anon'
(viewer) => viewer.userId !== channel.user && viewer.userId !== 'anon'
)
function insert(str: string, index: number, value: string) {
Expand Down

0 comments on commit 54d0700

Please sign in to comment.