[F] Fix display not detecting family

This commit is contained in:
Hykilpikonna
2021-01-24 20:16:29 -05:00
parent 4be170e203
commit b564b1a836
+1 -1
View File
@@ -171,7 +171,7 @@ class ManageVC: UIViewController
lJoinDate.text = localStorage.string(forKey: "id")
// Display family name
if let family = localStorage.object(forKey: "family") as? Family
if let family = Family.fromLocal()
{
lCurrentFamily.text = family.name
}