mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
only GET intermediates if that setting is an option (#5416)
* only GET intermediates if that setting is an option * lint --------- Co-authored-by: Mary Hipp <maryhipp@Marys-MacBook-Air.local>
This commit is contained in:
parent
cb7e56a9a3
commit
12e9f17f7a
@ -37,11 +37,10 @@ import { SettingsLanguageSelect } from './SettingsLanguageSelect';
|
||||
import { SettingsLogLevelSelect } from './SettingsLogLevelSelect';
|
||||
|
||||
type ConfigOptions = {
|
||||
shouldShowDeveloperSettings: boolean;
|
||||
shouldShowResetWebUiText: boolean;
|
||||
shouldShowAdvancedOptionsSettings: boolean;
|
||||
shouldShowClearIntermediates: boolean;
|
||||
shouldShowLocalizationToggle: boolean;
|
||||
shouldShowDeveloperSettings?: boolean;
|
||||
shouldShowResetWebUiText?: boolean;
|
||||
shouldShowClearIntermediates?: boolean;
|
||||
shouldShowLocalizationToggle?: boolean;
|
||||
};
|
||||
|
||||
type SettingsModalProps = {
|
||||
@ -84,7 +83,7 @@ const SettingsModal = ({ children, config }: SettingsModalProps) => {
|
||||
hasPendingItems,
|
||||
intermediatesCount,
|
||||
isLoading: isLoadingClearIntermediates,
|
||||
} = useClearIntermediates();
|
||||
} = useClearIntermediates(shouldShowClearIntermediates);
|
||||
|
||||
const {
|
||||
isOpen: isSettingsModalOpen,
|
||||
|
@ -17,7 +17,9 @@ export type UseClearIntermediatesReturn = {
|
||||
hasPendingItems: boolean;
|
||||
};
|
||||
|
||||
export const useClearIntermediates = (): UseClearIntermediatesReturn => {
|
||||
export const useClearIntermediates = (
|
||||
shouldShowClearIntermediates: boolean
|
||||
): UseClearIntermediatesReturn => {
|
||||
const { t } = useTranslation();
|
||||
const dispatch = useAppDispatch();
|
||||
|
||||
@ -25,6 +27,7 @@ export const useClearIntermediates = (): UseClearIntermediatesReturn => {
|
||||
undefined,
|
||||
{
|
||||
refetchOnMountOrArgChange: true,
|
||||
skip: !shouldShowClearIntermediates,
|
||||
}
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user