If you want all of your items/blocks to appear in your creative tab, then a simpler way is
public static final RegistryObject<CreativeModeTab> SOME_TAB = TABS.register("your_tab_id",
() -> CreativeModeTab.builder()
.title(Component.translatable("item_group." + Main.MOD_ID + ".items"))
.icon(() -> new ItemStack(Items.WHATEVER_ICON_ITEM))
.displayItems((parameters, output) -> {
YourItemsClass.YOUR_ITEMS_REGISTRY.getEntries().forEach(reg -> output.accept(reg.get()));
YourBlocksClass.YOUR_BLOCKS_REGISTRY.getEntries().forEach(reg -> output.accept(reg.get()));
})
.build());
where TABS is a deferred register with key Registries.CREATIVE_MODE_TAB.
If you don't want every single item in the tab, or you want them split among multiple tabs, just put them in a list as you register them depending on which tab you want them in and iterate over that list instead of the entire registry.
The reason for these changes is that now vanilla allows an item to be in more than one tab. So, for example, you could put a weapon from your mod in your own custom tab, but also make it appear in the combat tab with other weapons. If you want to add to an existing tab, listen to BuildCreativeModeTabContentsEvent, check which tab it's for with event.getTab, and then use event.accept to send it your item.