This is happening because Space Exploration adds a new recipe category called 'kiln' and modifies the base smelting.
For anyone wanting to get this mod working with Space Exploration, add a file in the mod zip called "data-final-fixes.lua". This file should sit right next to the data.lua file
Add the following text to the file:
if mods["space-exploration"] then
table.insert(data.raw["furnace"]["primitive-electric-furnace"].crafting_categories, "kiln")
table.insert(data.raw["furnace"]["basic-electric-furnace"].crafting_categories, "kiln")
end