Skip to content

Commit

Permalink
refactor(examples): mark self
Browse files Browse the repository at this point in the history
  • Loading branch information
hyrious committed Mar 16, 2023
1 parent cdabb0b commit bdb3582
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/mobx/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ export const App = observer(function App() {
{appStore.client && (
<>
<span>Users: </span>
{[appStore, ...appStore.remoteUsersAsArray].map(({ uid }) => fakeName(uid!)).join(", ")}
<span>{fakeName(appStore.uid!)} (Me)</span>
{appStore.remoteUsersAsArray.map(({ uid }) => ", " + fakeName(uid!)).join("")}
</>
)}
</div>
Expand Down

0 comments on commit bdb3582

Please sign in to comment.