mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-05 05:44:58 -05:00
chore(ui): format
Lots of changed bc the line length is now 120. May as well do it now.
This commit is contained in:
@@ -5,15 +5,10 @@ import { useTranslation } from 'react-i18next';
|
||||
|
||||
const ClearInvocationCacheButton = () => {
|
||||
const { t } = useTranslation();
|
||||
const { clearInvocationCache, isDisabled, isLoading } =
|
||||
useClearInvocationCache();
|
||||
const { clearInvocationCache, isDisabled, isLoading } = useClearInvocationCache();
|
||||
|
||||
return (
|
||||
<Button
|
||||
isDisabled={isDisabled}
|
||||
isLoading={isLoading}
|
||||
onClick={clearInvocationCache}
|
||||
>
|
||||
<Button isDisabled={isDisabled} isLoading={isLoading} onClick={clearInvocationCache}>
|
||||
{t('invocationCache.clear')}
|
||||
</Button>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user