Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp authored and astrobot-houston committed Mar 3, 2025
1 parent 84e94cc commit 55ef4f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/astro/e2e/view-transitions.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1617,6 +1617,6 @@ test.describe('View Transitions', () => {
await expect(page).toHaveTitle('Page 3');
await page.click('#link');
await expect(page).toHaveTitle('Page 1');
expect(lines.join("")).toBe('312233');
expect(lines.join('')).toBe('312233');
});
});
2 changes: 1 addition & 1 deletion packages/astro/src/transitions/router.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { TransitionBeforePreparationEvent } from './events.js';
import { TRANSITION_AFTER_SWAP, doPreparation, doSwap } from './events.js';
import type { Direction, Fallback, Options } from './types.js';
import { detectScriptExecuted } from './swap-functions.js';
import type { Direction, Fallback, Options } from './types.js';

type State = {
index: number;
Expand Down

0 comments on commit 55ef4f5

Please sign in to comment.