[ci] format

This commit is contained in:
matthewp 2023-10-02 12:54:01 +00:00 committed by astrobot-houston
parent 4c2bec681b
commit 22fae5211a
2 changed files with 6 additions and 8 deletions

View file

@ -13,7 +13,7 @@ describe('View Transitions styles', () => {
after(async () => { after(async () => {
await devServer.stop(); await devServer.stop();
}) });
it('style tag added for each instance of the component', async () => { it('style tag added for each instance of the component', async () => {
let res = await fixture.fetch('/multiple'); let res = await fixture.fetch('/multiple');

View file

@ -92,13 +92,11 @@ export const ComponentNode = createComponent({
// `result.propagators` has been moved to `result._metadata.propagators` // `result.propagators` has been moved to `result._metadata.propagators`
// TODO: remove this fallback in the next markdoc integration major // TODO: remove this fallback in the next markdoc integration major
const propagators = result._metadata.propagators || result.propagators; const propagators = result._metadata.propagators || result.propagators;
propagators.add( propagators.add({
{
init() { init() {
return headAndContent; return headAndContent;
}, },
} });
);
return headAndContent; return headAndContent;
} }