mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-19 10:47:46 +00:00
ref(TS) Require interfaces to start with I (#12424)
This commit is contained in:
@@ -11,7 +11,7 @@ import { type Image, VIRTUAL_BACKGROUND_TYPE } from '../constants';
|
||||
import { resizeImage } from '../functions';
|
||||
import logger from '../logger';
|
||||
|
||||
interface Props extends WithTranslation {
|
||||
interface IProps extends WithTranslation {
|
||||
|
||||
/**
|
||||
* Callback used to set the 'loading' state of the parent component.
|
||||
@@ -74,7 +74,7 @@ function UploadImageButton({
|
||||
showLabel,
|
||||
storedImages,
|
||||
t
|
||||
}: Props) {
|
||||
}: IProps) {
|
||||
const { classes } = useStyles();
|
||||
const uploadImageButton = useRef<HTMLInputElement>(null);
|
||||
const uploadImageKeyPress = useCallback(e => {
|
||||
|
||||
Reference in New Issue
Block a user