chore(deps) update uuid package to 8.3.2

Co-authored-by: Saúl Ibarra Corretgé <saghul@jitsi.org>
This commit is contained in:
Pavol Cvengros
2021-10-25 12:04:51 +02:00
committed by Saúl Ibarra Corretgé
parent bcb0fe919c
commit 2d27195652
14 changed files with 198 additions and 127 deletions

View File

@@ -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,