Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yostyle committed Feb 19, 2025
1 parent d8c988c commit 4c54dce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ class FtueAuthLoginFragment :
views.tchapPasswordConfirmationFieldTil.isVisible = isSignUpMode
views.loginSocialLoginContainer.isVisible = isSignUpMode && vectorFeatures.tchapIsSSOEnabled()

when(state.signMode) {
when (state.signMode) {
SignMode.TchapSignUp -> {
views.loginSSOSubmit.text = getString(CommonStrings.login_signin_sso, TCHAP_SSO_PROVIDER)
views.loginSSOSubmit.debouncedClicks {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ sealed class RoomProfileAction : VectorViewModelAction {
object ShareRoomProfile : RoomProfileAction()
object CreateShortcut : RoomProfileAction()
object RestoreEncryptionState : RoomProfileAction()

// TCHAP force to false to deactivate "Never send messages to unverified devices in room"
// data class SetEncryptToVerifiedDeviceOnly(val enabled: Boolean) : RoomProfileAction()
data class ReportRoom(val reason: String) : RoomProfileAction()
Expand Down

0 comments on commit 4c54dce

Please sign in to comment.