Closed djurnamn closed 5 years ago
might actually just be the link
component where we do this null check:
$theme = !empty($theme) ? $theme : null;
doing this instead could solve the problem:
$theme = isset($theme) ? $theme : null;
fixed in #74!
when I pass
$theme = false
to a component that calls another component, it's interpreted as null and sets theme default. we need to handle this in either the ´modifiers´ function or rethink how we null check.