From 9af02b608cefbf22099e185aede1be4d667ad544 Mon Sep 17 00:00:00 2001 From: Gimleux <56401687+Gimleux@users.noreply.github.com> Date: Mon, 21 Feb 2022 20:37:59 +0100 Subject: [PATCH] Update ApiActionsInfo.tsx --- src/components/pages/filesytem/ApiActionsInfo.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/pages/filesytem/ApiActionsInfo.tsx b/src/components/pages/filesytem/ApiActionsInfo.tsx index fcdde72f..7741b978 100644 --- a/src/components/pages/filesytem/ApiActionsInfo.tsx +++ b/src/components/pages/filesytem/ApiActionsInfo.tsx @@ -1,8 +1,8 @@ -import { ReactElement } from "react" +import React from "react" import { useSelector } from "react-redux" import { RootState } from "../../../background/redux/store" -export const ApiActionsInfo = (): ReactElement => { +export const ApiActionsInfo = (): JSX.Element => { const ongoingActions = useSelector( (state: RootState) => state.apiActions.actions )