Fix coordinator avatar on maker form

This commit is contained in:
Reckless_Satoshi 2023-12-30 16:07:50 +00:00
parent 781aee5f50
commit 278c222b85
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
2 changed files with 1 additions and 5 deletions

View File

@ -78,7 +78,6 @@ const FederationTable = ({
shortAlias={params.row.shortAlias} shortAlias={params.row.shortAlias}
style={{ width: '3.215em', height: '3.215em' }} style={{ width: '3.215em', height: '3.215em' }}
smooth={true} smooth={true}
flipHorizontally={false}
small={true} small={true}
/> />
</Grid> </Grid>

View File

@ -73,12 +73,9 @@ const SelectCoordinator: React.FC<SelectCoordinatorProps> = ({ coordinator, setC
> >
<Grid item> <Grid item>
<RobotAvatar <RobotAvatar
nickname={coordinator} shortAlias={coordinator}
coordinator={true}
style={{ width: '3em', height: '3em' }} style={{ width: '3em', height: '3em' }}
smooth={true} smooth={true}
flipHorizontally={true}
baseUrl={hostUrl}
small={true} small={true}
/> />
</Grid> </Grid>