Merge pull request #6345 from matrix-org/t3chguy/ts/c1

This commit is contained in:
Michael Telatynski
2021-07-14 17:19:07 +01:00
committed by GitHub
30 changed files with 205 additions and 276 deletions

View File

@@ -32,7 +32,7 @@ interface IProps {
hasAvatar: boolean;
noAvatarLabel?: string;
hasAvatarLabel?: string;
setAvatarUrl(url: string): Promise<void>;
setAvatarUrl(url: string): Promise<unknown>;
}
const MiniAvatarUploader: React.FC<IProps> = ({ hasAvatar, hasAvatarLabel, noAvatarLabel, setAvatarUrl, children }) => {