feat(ui): remove clear temp folder canvas button

This button is nonfunctional.

Soon we will introduce a different way to handle clearing out intermediate images (likely automated).
This commit is contained in:
psychedelicious
2023-06-09 17:33:17 +10:00
parent 05a19753c6
commit 813f79f0f9
3 changed files with 0 additions and 45 deletions

View File

@ -12,7 +12,6 @@ import {
setShouldShowCanvasDebugInfo,
setShouldShowIntermediates,
} from 'features/canvas/store/canvasSlice';
import EmptyTempFolderButtonModal from 'features/system/components/ClearTempFolderButtonModal';
import { FaWrench } from 'react-icons/fa';
@ -105,7 +104,6 @@ const UnifiedCanvasSettings = () => {
onChange={(e) => dispatch(setShouldAntialias(e.target.checked))}
/>
<ClearCanvasHistoryButtonModal />
<EmptyTempFolderButtonModal />
</Flex>
</IAIPopover>
);