fix lints

This commit is contained in:
Timo K
2026-03-09 13:42:28 +01:00
parent 8db1c4c370
commit 38382539ad
2 changed files with 5 additions and 3 deletions

View File

@@ -121,9 +121,10 @@ export const EndCallButton: FC<EndCallButtonProps> = ({
);
};
export const SettingsButton: FC<ComponentPropsWithoutRef<"button">> = (
props,
) => {
interface SettingsButtonProps extends ComponentPropsWithoutRef<"button"> {
size: "sm" | "lg";
}
export const SettingsButton: FC<SettingsButtonProps> = (props) => {
const { t } = useTranslation();
return (

View File

@@ -166,6 +166,7 @@ export function ReactionPopupMenu({
interface ReactionToggleButtonProps extends ComponentPropsWithoutRef<"button"> {
identifier: string;
vm: CallViewModel;
size: "sm" | "lg";
}
export function ReactionToggleButton({