Skip to content

Commit

Permalink
fix creation of sendMsg handler
Browse files Browse the repository at this point in the history
  • Loading branch information
seriousme committed Oct 27, 2024
1 parent d2294a4 commit 171bc91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ controlsPage();
{item.label}
<Switch
value={state[item.topic]}
sendMsg=createSendMessage(item.topic)
sendMsg= { createSendMessage(item.topic) }
/>
</li>
{/if}
Expand All @@ -66,7 +66,7 @@ controlsPage();
<li class={listItemClass}>
{item.label}
<Blinds
sendMsg=createSendMessage(item.topic)
sendMsg= { createSendMessage(item.topic) }
/>
</li>
{/if}
Expand Down

0 comments on commit 171bc91

Please sign in to comment.