apps/web/src/components/PageComponents/Messages/MessageItem.tsx:148 calls message.from.toString(16) inside the displayName useMemo unconditionally. The surrounding expression at :144-145 explicitly handles message.from == null, so a null from is possible — and will throw TypeError: Cannot read properties of null.
Guard the useMemo body or move the null-fallback branch above it.
apps/web/src/components/PageComponents/Messages/MessageItem.tsx:148callsmessage.from.toString(16)inside thedisplayNameuseMemounconditionally. The surrounding expression at :144-145 explicitly handlesmessage.from == null, so a nullfromis possible — and will throwTypeError: Cannot read properties of null.Guard the useMemo body or move the null-fallback branch above it.