Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/components/room/chat/chat-container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ const DmThread = ({
const { signalingService } = useSignaling();
const peerMe = usePeerMe();
const dmChats = useDmChats();
const chatActions = useChatActions();
const [message, setMessage] = useState('');
const [showPicker, setShowPicker] = useState(false);
const thread = dmChats[peer.id] ?? [];
Expand Down
2 changes: 1 addition & 1 deletion src/components/room/display/pin-grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { useMedia } from '@/hooks/use-media';
import { PeerTile } from '../grid/peer-tile';
import MyTile from '../grid/my-tile';

const STRIP_TILE = { width: 160, height: 120 };
const STRIP_TILE = { width: 160, height: 120, rows: 1, cols: 1, aspectRatio: '4:3' };

const PinnedLarge = ({ peerId }: { peerId: string }) => {
const videoRef = useRef<HTMLVideoElement>(null);
Expand Down
Loading