Merge pull request #494 from vector-im/SimonBrandner/fix/ts

This commit is contained in:
Šimon Brandner 2022-08-01 19:17:29 +02:00 committed by GitHub
commit c723fae0e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -31,8 +31,8 @@ interface Props extends HTMLAttributes<HTMLDivElement> {
className: string; className: string;
client: MatrixClient; client: MatrixClient;
participants: RoomMember[]; participants: RoomMember[];
max: number; max?: number;
size: Size; size?: Size;
} }
export function Facepile({ export function Facepile({

View file

@ -8,7 +8,7 @@ import { ProfileModal } from "./profile/ProfileModal";
import { UserMenu } from "./UserMenu"; import { UserMenu } from "./UserMenu";
interface Props { interface Props {
preventNavigation: boolean; preventNavigation?: boolean;
} }
export function UserMenuContainer({ preventNavigation }: Props) { export function UserMenuContainer({ preventNavigation }: Props) {