Skip to content

Commit 5279875

Browse files
authored
fix(issue-details): Update animation per design (#80843)
Only animate max of 3 times, delay it by 1s for page load, and i shortened the time between shakes from 4s to 3s.
1 parent ac551e9 commit 5279875

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

static/app/views/issueDetails/actions/newIssueExperienceButton.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@ export function NewIssueExperienceButton() {
5656
}}
5757
transition={{
5858
duration: 1,
59-
repeatDelay: 4,
60-
repeat: Infinity,
59+
delay: 1,
60+
repeatDelay: 3,
61+
repeat: 3,
6162
}}
6263
>
6364
<IconLab isSolid={hasStreamlinedUI} />

0 commit comments

Comments
 (0)