Hide Opportunities as nothing is built yet and make company table fully editable (#109)
* Hide Opportunities as nothing is built yet and make company table fully editable * Fix tests
This commit is contained in:
@ -18,6 +18,9 @@ export interface User {
|
||||
workspace_member?: WorkspaceMember;
|
||||
}
|
||||
|
||||
export type PartialUser = Partial<User> &
|
||||
Pick<User, 'id' | 'displayName' | 'email'>;
|
||||
|
||||
export const mapUser = (user: GraphqlQueryUser): User => {
|
||||
const mappedUser = {
|
||||
id: user.id,
|
||||
|
||||
Reference in New Issue
Block a user