fix: rename src to avatarUrl in collaborator (#5177)

* fix: rename  to  in collaborator

* update pr link

* fallback to intials on image error
This commit is contained in:
Aakansha Doshi 2022-05-11 15:54:10 +05:30 committed by GitHub
parent 68f23d652f
commit 4ee48d2729
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 22 additions and 10 deletions

View file

@ -47,7 +47,7 @@ export type Collaborator = {
};
// The url of the collaborator's avatar, defaults to username intials
// if not present
src?: string;
avatarUrl?: string;
};
export type DataURL = string & { _brand: "DataURL" };