Skip to content

Commit 0019dc0

Browse files
[getsentry/action-github-commit] Auto commit
1 parent 8b5c8da commit 0019dc0

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/components/onboarding/index.tsx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -322,43 +322,43 @@ export function OnboardingOptionButtons({
322322
{optionDetails[option.id] && (
323323
<Tooltip.Provider delayDuration={300}>
324324
<Tooltip.Root>
325-
<Tooltip.Trigger
325+
<Tooltip.Trigger
326326
asChild
327-
onMouseEnter={(e) => {
327+
onMouseEnter={e => {
328328
// Explicit mouse enter handling for Firefox compatibility
329329
e.currentTarget.setAttribute('data-state', 'delayed-open');
330330
}}
331-
onMouseLeave={(e) => {
331+
onMouseLeave={e => {
332332
// Explicit mouse leave handling for Firefox compatibility
333333
e.currentTarget.removeAttribute('data-state');
334334
}}
335-
onFocus={(e) => {
335+
onFocus={e => {
336336
// Ensure keyboard navigation works
337337
e.currentTarget.setAttribute('data-state', 'delayed-open');
338338
}}
339-
onBlur={(e) => {
339+
onBlur={e => {
340340
// Ensure keyboard navigation works
341341
e.currentTarget.removeAttribute('data-state');
342342
}}
343343
>
344-
<span
344+
<span
345345
role="button"
346346
tabIndex={0}
347347
aria-label={`Help: ${optionDetails[option.id].name}`}
348-
style={{
349-
display: 'inline-flex',
348+
style={{
349+
display: 'inline-flex',
350350
alignItems: 'center',
351351
cursor: 'help',
352-
outline: 'none'
352+
outline: 'none',
353353
}}
354354
>
355355
<QuestionMarkCircledIcon fontSize={20} strokeWidth="2" />
356356
</span>
357357
</Tooltip.Trigger>
358358
<Tooltip.Portal>
359359
<Theme accentColor="iris">
360-
<Tooltip.Content
361-
className={styles.TooltipContent}
360+
<Tooltip.Content
361+
className={styles.TooltipContent}
362362
sideOffset={5}
363363
align="center"
364364
side="top"

0 commit comments

Comments
 (0)