mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-22 13:37:46 +00:00
chore(deps) update uuid package to 8.3.2
Co-authored-by: Saúl Ibarra Corretgé <saghul@jitsi.org>
This commit is contained in:
committed by
Saúl Ibarra Corretgé
parent
bcb0fe919c
commit
2d27195652
@@ -1,7 +1,7 @@
|
||||
// @flow
|
||||
|
||||
import React, { useCallback, useRef } from 'react';
|
||||
import uuid from 'uuid';
|
||||
import { v4 as uuidv4 } from 'uuid';
|
||||
|
||||
import { translate } from '../../base/i18n';
|
||||
import { Icon, IconPlusCircle } from '../../base/icons';
|
||||
@@ -72,7 +72,7 @@ function UploadImageButton({
|
||||
reader.readAsDataURL(imageFile[0]);
|
||||
reader.onload = async () => {
|
||||
const url = await resizeImage(reader.result);
|
||||
const uuId = uuid.v4();
|
||||
const uuId = uuidv4();
|
||||
|
||||
setStoredImages([
|
||||
...storedImages,
|
||||
|
||||
Reference in New Issue
Block a user