From 657424185c17d4bf747345edb5ff128af1613ba3 Mon Sep 17 00:00:00 2001 From: giannif Date: Thu, 18 Aug 2022 13:49:54 -0700 Subject: [PATCH] build: fix react-use import --- packages/react-components/src/components/video/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-components/src/components/video/index.tsx b/packages/react-components/src/components/video/index.tsx index 0251a7be..fcec0625 100644 --- a/packages/react-components/src/components/video/index.tsx +++ b/packages/react-components/src/components/video/index.tsx @@ -1,7 +1,7 @@ import styled from '@emotion/styled' import { getGifHeight, Logger } from '@giphy/js-util' import React, { ComponentProps, ElementType, useCallback, useEffect, useState } from 'react' -import { useTimeoutFn } from 'react-use' +import useTimeoutFn from 'react-use/lib/useTimeoutFn' import { GifOverlayProps } from '../types' import Attribution from './attribution' import { VolumeOffIcon, VolumeOnIcon } from './controls/volume'