Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix avatars #251

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions datas/meetups/meetup-79.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ talks:
id: ded7a100-4739-4b25-81c7-14202b4248d0
name: 'Alexandre Morgaut'
link: 'amorgaut'
image: 'https://avatars0.githubusercontent.com/u/49318?v=4'
-
id: '508986f3-97b6-4b75-9769-f469db1e6e38'
title: "Adieu RxJS ! Vive les Signals ! Oh wait…"
Expand All @@ -39,3 +40,4 @@ Est-ce qu’on veut vraiment que RxJS soit entièrement remplacé par les Signal
id: '2db847ff-266d-4cbb-acd6-1345757cf5c0'
name: 'Anthony Pena'
link: '_Anthony_Pena'
image: 'https://avatars.githubusercontent.com/u/2668904?v=4'
4 changes: 1 addition & 3 deletions src/components/Avatars/Avatars.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ export function Avatars ({ speakers }) {
[styles.avatars__portraitSingle]: speakersWithLink.length === 1
}
)}
src={
`https://avatars.charlyx.dev/twitter?username=${ speaker.link }&size=original`
}
src={speaker.image}
/>
)
})}
Expand Down
1 change: 1 addition & 0 deletions src/components/NextMeetup/Talks/TalksContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export function TalksContainer () {
id
name
link
image
}
}
}
Expand Down
Loading