diff --git a/README.md b/README.md index 7a627833..713adc23 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -# Utopia UI [![npm version](https://img.shields.io/npm/v/utopia-ui.svg)](https://www.npmjs.com/package/utopia-ui) +# Utopia UI [![npm version](https://img.shields.io/npm/v/utopia-ui.svg)](https://www.npmjs.com/package/utopia-ui) ![Build Status](https://img.shields.io/github/actions/workflow/status/utopia-os/utopia-ui/test.build.yml?branch=main) ![License](https://img.shields.io/github/license/utopia-os/utopia-ui) + **UI Framework for Real-Life-Networking-Apps** *Real change happens in real life when we meet in person and connect as local communities manifesting their ideas with the earth. When we help each other to step out of our bubbles at home and start building common infrastructure to meet human needs in harmony with Mother Earth.* diff --git a/src/Components/Profile/Templates/TabsView.tsx b/src/Components/Profile/Templates/TabsView.tsx index 2b046f7b..e32501a4 100644 --- a/src/Components/Profile/Templates/TabsView.tsx +++ b/src/Components/Profile/Templates/TabsView.tsx @@ -50,7 +50,7 @@ export const TabsView = ({ const appState = useAppState() const getUserProfile = (id: string) => { return items.find( - (i) => i.user_created.id === id && i.layer?.itemType.name === appState.userType, + (i) => i.user_created?.id === id && i.layer?.itemType.name === appState.userType, ) }