mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 03:56:23 +08:00
fix(server): default workspace avatar size (#10229)
This commit is contained in:
@@ -11,8 +11,8 @@ export const Workspace = (props: WorkspaceProps) => {
|
||||
<AvatarWithName
|
||||
name={props.name}
|
||||
img={props.avatar}
|
||||
width={`${props.size}px`}
|
||||
height={`${props.size}px`}
|
||||
width={`${props.size ?? 20}px`}
|
||||
height={`${props.size ?? 20}px`}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user