Revert "fix(ui): Apple Pencil requires onPointerUp instead of onClick"

This reverts commit 2a90f4f59e.
This commit is contained in:
psychedelicious
2024-10-07 08:08:32 +10:00
parent e0b63559d0
commit eee4175e4d
208 changed files with 413 additions and 445 deletions

View File

@@ -8,7 +8,7 @@ const ClearInvocationCacheButton = () => {
const { clearInvocationCache, isDisabled, isLoading } = useClearInvocationCache();
return (
<Button isDisabled={isDisabled} isLoading={isLoading} onPointerUp={clearInvocationCache}>
<Button isDisabled={isDisabled} isLoading={isLoading} onClick={clearInvocationCache}>
{t('invocationCache.clear')}
</Button>
);