Skip to content

Commit

Permalink
Fix console exception
Browse files Browse the repository at this point in the history
  • Loading branch information
ed-asriyan committed Feb 4, 2025
1 parent 8b99b9a commit 27efcdf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/controls/card-users/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import type { Room } from '../../../stores/room';
import Loader from '../../loader.svelte';
import Users from './users/index.svelte';
import { readable } from 'svelte/store';
interface Props {
room: Room;
Expand All @@ -13,7 +14,7 @@
let { room, highlight }: Props = $props();
let users = $derived(room?.users || []);
let users = $derived(room?.users || readable([]));
let copyTumbler: boolean = $state(false);
const copyToClipboard = function () {
Expand Down

0 comments on commit 27efcdf

Please sign in to comment.