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 Oct 2, 2023
1 parent 4c2bec6 commit 22fae52
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/astro/test/view-transitions.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('View Transitions styles', () => {

after(async () => {
await devServer.stop();
})
});

it('style tag added for each instance of the component', async () => {
let res = await fixture.fetch('/multiple');
Expand Down
12 changes: 5 additions & 7 deletions packages/integrations/markdoc/components/TreeNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,11 @@ export const ComponentNode = createComponent({
// `result.propagators` has been moved to `result._metadata.propagators`
// TODO: remove this fallback in the next markdoc integration major
const propagators = result._metadata.propagators || result.propagators;
propagators.add(
{
init() {
return headAndContent;
},
}
);
propagators.add({
init() {
return headAndContent;
},
});

return headAndContent;
}
Expand Down

0 comments on commit 22fae52

Please sign in to comment.