WIP PWA for Grain
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: use correct auth.user.avatar.url path for user avatar

+2 -2
+2 -2
src/components/organisms/grain-comment-sheet.js
··· 232 232 createdAt: new Date().toISOString(), 233 233 handle: auth.user?.handle || '', 234 234 displayName: auth.user?.displayName || '', 235 - avatarUrl: auth.user?.avatarUrl || '', 235 + avatarUrl: auth.user?.avatar?.url || '', 236 236 replyToUri: this._replyToUri, 237 237 isReply: !!this._replyToUri 238 238 }; ··· 292 292 } 293 293 294 294 render() { 295 - const userAvatarUrl = auth.user?.avatarUrl || ''; 295 + const userAvatarUrl = auth.user?.avatar?.url || ''; 296 296 297 297 return html` 298 298 <div class="overlay" @click=${this.#handleOverlayClick}>