Skip to content

Commit

Permalink
🐛 fix profile pic version
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoinegtir committed Jul 25, 2023
1 parent e6eeeea commit b66d751
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion client/lib/auth/signup/email.dart
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@ class _SignupState extends State<EmailPage> {
displayName: widget.name,
userName: "@" + "${widget.name}" + "${Random().nextInt(1000)}",
bio: widget.bio,
profilePic: "https://firebasestorage.googleapis.com/v0/b/threads-instagram.appspot.com/o/Simulator%20Screen%20Shot%20-%20iPhone%2014%20Pro%20-%202023-07-09%20at%2021.28.44.jpeg?alt=media&token=9ba68508-7555-4b64-824c-e17ee14753a3",
profilePic:
"https://static.vecteezy.com/system/resources/previews/005/544/718/original/profile-icon-design-free-vector.jpg",
link: widget.link,
);
state.updateUserProfile(
Expand Down
2 changes: 1 addition & 1 deletion client/lib/auth/signup/signup.dart
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class _SignupState extends State<Signup> {
? FileImage(_image!)
: CachedNetworkImageProvider(
scale: 10,
"https://firebasestorage.googleapis.com/v0/b/threads-instagram.appspot.com/o/Simulator%20Screen%20Shot%20-%20iPhone%2014%20Pro%20-%202023-07-09%20at%2021.28.44.jpeg?alt=media&token=9ba68508-7555-4b64-824c-e17ee14753a3",
"https://static.vecteezy.com/system/resources/previews/005/544/718/original/profile-icon-design-free-vector.jpg",
) as ImageProvider)),
)
],
Expand Down

0 comments on commit b66d751

Please sign in to comment.