Add profile pictures to people and fix account/workspace deletion (#984)
* Fix LinkedIn URL not redirecting to the right url * add avatars for people and seeds * Fix delete account/workspace * Add people picture on other pages * Change style of delete button * Revert modal to previous size * Fix tests
This commit is contained in:
@ -6,6 +6,7 @@ export const peopleNameCellFamilyState = atomFamily<
|
||||
lastName: string | null;
|
||||
commentCount: number | null;
|
||||
displayName: string | null;
|
||||
avatarUrl: string | null;
|
||||
},
|
||||
string
|
||||
>({
|
||||
@ -15,5 +16,6 @@ export const peopleNameCellFamilyState = atomFamily<
|
||||
lastName: null,
|
||||
commentCount: null,
|
||||
displayName: null,
|
||||
avatarUrl: null,
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user