ShapedLauncherIcon: Add missing when else branch

This commit is contained in:
MM20
2022-08-22 22:08:56 +02:00
parent dcf5d3f8b1
commit 98d33733b2
@@ -66,7 +66,7 @@ fun ShapedLauncherIcon(
when (icon) {
is DynamicLauncherIcon -> null
is StaticLauncherIcon -> icon
null -> null
else -> null
}
)
}