fix lints
This commit is contained in:
@@ -121,9 +121,10 @@ export const EndCallButton: FC<EndCallButtonProps> = ({
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const SettingsButton: FC<ComponentPropsWithoutRef<"button">> = (
|
interface SettingsButtonProps extends ComponentPropsWithoutRef<"button"> {
|
||||||
props,
|
size: "sm" | "lg";
|
||||||
) => {
|
}
|
||||||
|
export const SettingsButton: FC<SettingsButtonProps> = (props) => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -166,6 +166,7 @@ export function ReactionPopupMenu({
|
|||||||
interface ReactionToggleButtonProps extends ComponentPropsWithoutRef<"button"> {
|
interface ReactionToggleButtonProps extends ComponentPropsWithoutRef<"button"> {
|
||||||
identifier: string;
|
identifier: string;
|
||||||
vm: CallViewModel;
|
vm: CallViewModel;
|
||||||
|
size: "sm" | "lg";
|
||||||
}
|
}
|
||||||
|
|
||||||
export function ReactionToggleButton({
|
export function ReactionToggleButton({
|
||||||
|
|||||||
Reference in New Issue
Block a user