Make NotificationTroubleshootTestState.Status stable

This commit is contained in:
Benoit Marty
2025-10-09 17:21:42 +02:00
committed by Benoit Marty
parent 8987949704
commit 417918feed

View File

@@ -7,11 +7,14 @@
package io.element.android.libraries.troubleshoot.api.test
import androidx.compose.runtime.Immutable
data class NotificationTroubleshootTestState(
val name: String,
val description: String,
val status: Status,
) {
@Immutable
sealed interface Status {
data class Idle(val visible: Boolean) : Status
data object InProgress : Status