We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 44b9bd0 + 68172d1 commit c723faeCopy full SHA for c723fae
src/Facepile.tsx
@@ -31,8 +31,8 @@ interface Props extends HTMLAttributes<HTMLDivElement> {
31
className: string;
32
client: MatrixClient;
33
participants: RoomMember[];
34
- max: number;
35
- size: Size;
+ max?: number;
+ size?: Size;
36
}
37
38
export function Facepile({
src/UserMenuContainer.tsx
@@ -8,7 +8,7 @@ import { ProfileModal } from "./profile/ProfileModal";
8
import { UserMenu } from "./UserMenu";
9
10
interface Props {
11
- preventNavigation: boolean;
+ preventNavigation?: boolean;
12
13
14
export function UserMenuContainer({ preventNavigation }: Props) {
0 commit comments