Skip to content

Commit 403121b

Browse files
committed
hardcode all new users to use the same avatar
1 parent 29d6970 commit 403121b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class AppComponent implements OnInit {
3434
.filter(result => !!result)
3535
.map(result => {
3636
result.id = this.users.length + 1;
37-
result.avatar = `svg-${result.id}`;
37+
result.avatar = 'svg-6';
3838
return result;
3939
})
4040
.subscribe(user => {

0 commit comments

Comments
 (0)