Update all non-major dependencies (#12815)

* Update all non-major dependencies

* Prettier

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
renovate[bot] 2024-07-24 10:53:13 +00:00 committed by GitHub
parent 57f30f18d0
commit bacf738ac8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 33 additions and 49 deletions

View file

@ -143,7 +143,7 @@ const BaseCard: React.FC<IProps> = forwardRef<HTMLDivElement, IProps>(
{header}
</Text>
) : (
header ?? <div className="mx_BaseCard_header_spacer" />
(header ?? <div className="mx_BaseCard_header_spacer" />)
)}
{closeButton}
</div>

View file

@ -253,7 +253,7 @@ export default class RoomProfileSettings extends React.Component<IProps, IState>
avatar={
this.state.avatarRemovalPending
? undefined
: this.state.avatarFile ?? this.state.originalAvatarUrl ?? undefined
: (this.state.avatarFile ?? this.state.originalAvatarUrl ?? undefined)
}
avatarAltText={_t("room_settings|general|avatar_field_label")}
disabled={!this.state.canSetAvatar}