feat(ui): rerender mitigation sweep

This commit is contained in:
psychedelicious
2023-04-27 17:30:21 +10:00
parent 5d8728c7ef
commit ca1cc0e2c2
16 changed files with 98 additions and 138 deletions

View File

@@ -1,5 +1,6 @@
import { Flex, Image, Spinner } from '@chakra-ui/react';
import InvokeAILogoImage from 'assets/images/logo.png';
import { memo } from 'react';
// This component loads before the theme so we cannot use theme tokens here
@@ -29,4 +30,4 @@ const Loading = () => {
);
};
export default Loading;
export default memo(Loading);