| 
1 |  | -import React, { useEffect, useRef, useState } from 'react';  | 
2 |  | -import { FaRegCheckCircle, FaRegTimesCircle, FaSpinner } from 'react-icons/fa';  | 
3 |  | -import { AiFillCloseCircle } from 'react-icons/ai';  | 
4 |  | -import { motion, AnimatePresence } from 'framer-motion';  | 
5 |  | -import { EntityType } from 'providers/Project';  | 
6 |  | -import { useProject } from 'providers/Project/projectHooks';  | 
7 |  | -import { RemoveToastButton } from 'layout/RemoveToastButton';  | 
8 |  | -import { useThemeUI, Box, Text, Flex } from 'theme-ui';  | 
9 | 1 | import {  | 
10 | 2 |   Account,  | 
11 | 3 |   ResultType,  | 
12 | 4 |   useSetExecutionResultsMutation,  | 
13 | 5 | } from 'api/apollo/generated/graphql';  | 
 | 6 | +import { AnimatePresence, motion } from 'framer-motion';  | 
 | 7 | +import { RemoveToastButton } from 'layout/RemoveToastButton';  | 
 | 8 | +import { EntityType } from 'providers/Project';  | 
 | 9 | +import { useProject } from 'providers/Project/projectHooks';  | 
 | 10 | +import React, { useEffect, useRef, useState } from 'react';  | 
 | 11 | +import { AiFillCloseCircle } from 'react-icons/ai';  | 
 | 12 | +import { FaRegCheckCircle, FaRegTimesCircle, FaSpinner } from 'react-icons/fa';  | 
 | 13 | +import { Box, Flex, Text, useThemeUI } from 'theme-ui';  | 
14 | 14 | 
 
  | 
15 | 15 | import { ArgumentsProps } from 'components/Arguments/types';  | 
16 | 16 | import { ExecuteCommandRequest } from 'monaco-languageclient';  | 
17 | 17 | 
 
  | 
18 | 18 | import {  | 
19 | 19 |   ControlContainer,  | 
20 |  | -  ToastContainer,  | 
21 | 20 |   HoverPanel,  | 
22 | 21 |   StatusMessage,  | 
 | 22 | +  ToastContainer,  | 
23 | 23 | } from './styles';  | 
24 | 24 | 
 
  | 
25 | 25 | import {  | 
@@ -229,9 +229,9 @@ const Arguments: React.FC<ArgumentsProps> = (props) => {  | 
229 | 229 |   const [notifications, setNotifications] = useState<{  | 
230 | 230 |     [identifier: string]: string[];  | 
231 | 231 |   }>({});  | 
232 |  | -  /* eslint-disable */  | 
233 | 232 |   // compare 'state' field for each account, set 'notifications' state for new data  | 
234 |  | -  // @ts-ignore: <- this state is only used to compare and render notifications  | 
 | 233 | +  // <- this state is only used to compare and render notifications  | 
 | 234 | +  // eslint-disable-next-line @typescript-eslint/no-unused-vars  | 
235 | 235 |   const [_, setProjectAccts] = useState(project.accounts);  | 
236 | 236 |   const [counter, setCounter] = useState(0);  | 
237 | 237 |   useEffect(() => {  | 
 | 
0 commit comments