File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -28807,7 +28807,7 @@ async function transform_examples(
28807
28807
examples: example_list,
28808
28808
};
28809
28809
});
28810
- return { list, full };
28810
+ return { list, full: full.filter(({name}) => name !== 'embeds') };
28811
28811
}
28812
28812
28813
28813
async function process_tutorial(
@@ -28862,7 +28862,7 @@ async function process_tutorial(
28862
28862
})
28863
28863
);
28864
28864
28865
- return [full, list.filter(({name}) => name !== 'embeds') ];
28865
+ return [full, list];
28866
28866
}
28867
28867
28868
28868
async function transform_tutorial(
Original file line number Diff line number Diff line change @@ -27570,7 +27570,7 @@ async function transform_examples(
27570
27570
examples: example_list,
27571
27571
};
27572
27572
});
27573
- return { list, full };
27573
+ return { list, full: full.filter(({name}) => name !== 'embeds') };
27574
27574
}
27575
27575
27576
27576
async function process_tutorial(
@@ -27625,7 +27625,7 @@ async function process_tutorial(
27625
27625
})
27626
27626
);
27627
27627
27628
- return [full, list.filter(({name}) => name !== 'embeds') ];
27628
+ return [full, list];
27629
27629
}
27630
27630
27631
27631
async function transform_tutorial(
Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ export async function transform_examples(
209
209
examples : example_list ,
210
210
} ;
211
211
} ) ;
212
- return { list, full } ;
212
+ return { list, full : full . filter ( ( { name } ) => name !== 'embeds' ) } ;
213
213
}
214
214
215
215
async function process_tutorial (
@@ -264,7 +264,7 @@ async function process_tutorial(
264
264
} )
265
265
) ;
266
266
267
- return [ full , list . filter ( ( { name } ) => name !== 'embeds' ) ] ;
267
+ return [ full , list ] ;
268
268
}
269
269
270
270
export async function transform_tutorial (
You can’t perform that action at this time.
0 commit comments