Skip to content

Commit

Permalink
Remove report problem state dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawa committed Oct 2, 2023
1 parent 2121b77 commit f88de14
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 226 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ fun ReportProblemScreen(
var email by rememberSaveable { mutableStateOf("") }
var description by rememberSaveable { mutableStateOf("") }

// Dialog to show sending states
// Show sending states
if (uiState.sendingState != null) {
Column(
modifier =
Expand All @@ -140,15 +140,6 @@ fun ReportProblemScreen(
ErrorContent({ onSendReport(email, description) }, onClearSendResult)
is SendingReportUiState.Success -> SentContent(uiState.sendingState)
}
// ShowReportProblemState(
// uiState.sendingState,
// onDismiss = onClearSendResult,
// onClearForm = {
// email = ""
// description = ""
// },
// retry = { onSendReport(email, description) }
// )
return@CollapsingToolbarScaffold
}
}
Expand Down

0 comments on commit f88de14

Please sign in to comment.