Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: trigger ui release #485

Merged
merged 1 commit into from
Sep 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[animationSelector]: { opacity: 0, transform: 'translateY(-16px)' },
});

const staggerMenuItems = stagger(0.06, { startDelay: 0.36 });
const staggerMenuItems = stagger(0.06, { startDelay: 0.3 });

export function useApproverChildrenEntryAnimation() {
const [scope, animate] = useAnimate();
Expand All @@ -18,7 +18,7 @@
useOnMount(() => {
// Animation throws if there are no children
try {
animate(

Check warning on line 21 in packages/ui/src/components/approver/animations/approver-animation.web.tsx

View workflow job for this annotation

GitHub Actions / lint-eslint

Promises must be awaited, end with a call to .catch, end with a call to .then with a rejection handler or be explicitly marked as ignored with the `void` operator
animationSelector,
{ opacity: 1, transform: 'translateY(0)' },
{
Expand All @@ -27,7 +27,7 @@
ease: 'easeOut',
}
);
} catch (_e) {}

Check warning on line 30 in packages/ui/src/components/approver/animations/approver-animation.web.tsx

View workflow job for this annotation

GitHub Actions / lint-eslint

'_e' is defined but never used
});

return scope;
Expand Down
Loading