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

@ -16,7 +16,6 @@ import {
setShouldShowIntermediates,
setShouldSnapToGrid,
} from 'features/canvas/store/canvasSlice';
import EmptyTempFolderButtonModal from 'features/system/components/ClearTempFolderButtonModal';
import { isEqual } from 'lodash-es';
import { ChangeEvent } from 'react';
@ -159,7 +158,6 @@ const IAICanvasSettingsButtonPopover = () => {
onChange={(e) => dispatch(setShouldAntialias(e.target.checked))}
/>
<ClearCanvasHistoryButtonModal />
<EmptyTempFolderButtonModal />
</Flex>
</IAIPopover>
);