Skip to content

Commit

Permalink
sync numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
devjiwonchoi committed Jan 2, 2025
1 parent 5e0f6b4 commit 5383999
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function ErrorOverlayBottomStacks({
{errorsCount > 1 && (
<div
className={`error-overlay-bottom-stack-1 ${
errorsCount - activeIdx >= 2 ? '' : 'stack-slide-up'
errorsCount - activeIdx > 1 ? '' : 'stack-slide-up'
}`}
aria-hidden="true"
/>
Expand All @@ -23,7 +23,7 @@ export function ErrorOverlayBottomStacks({
{errorsCount > 2 && (
<div
className={`error-overlay-bottom-stack-2 ${
errorsCount - activeIdx >= 3 ? '' : 'stack-slide-up'
errorsCount - activeIdx > 2 ? '' : 'stack-slide-up'
}`}
aria-hidden="true"
/>
Expand Down

0 comments on commit 5383999

Please sign in to comment.