File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28862,7 +28862,7 @@ async function process_tutorial(
2886228862 })
2886328863 );
2886428864
28865- return [full, list];
28865+ return [full, list.filter(({name}) => name !== 'embeds') ];
2886628866}
2886728867
2886828868async function transform_tutorial(
Original file line number Diff line number Diff line change @@ -27625,7 +27625,7 @@ async function process_tutorial(
2762527625 })
2762627626 );
2762727627
27628- return [full, list];
27628+ return [full, list.filter(({name}) => name !== 'embeds') ];
2762927629}
2763027630
2763127631async function transform_tutorial(
Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ async function process_tutorial(
264264 } )
265265 ) ;
266266
267- return [ full , list ] ;
267+ return [ full , list . filter ( ( { name } ) => name !== 'embeds' ) ] ;
268268}
269269
270270export async function transform_tutorial (
You can’t perform that action at this time.
0 commit comments