summaryrefslogtreecommitdiff
path: root/sw-ui
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2022-07-02 20:52:34 +0200
committerJoffrey Bion <joffrey.bion@gmail.com>2022-07-02 20:53:26 +0200
commitca9fbd035cda96047abdda515cc99a443d0fd3f6 (patch)
tree3545409ef25da63567a80f205ea9642e3129ecc4 /sw-ui
parentCheck-in yarn.lock (diff)
downloadseven-wonders-ca9fbd035cda96047abdda515cc99a443d0fd3f6.tar.gz
seven-wonders-ca9fbd035cda96047abdda515cc99a443d0fd3f6.tar.bz2
seven-wonders-ca9fbd035cda96047abdda515cc99a443d0fd3f6.zip
Upgrade coroutines to 1.6.3
Diffstat (limited to 'sw-ui')
-rw-r--r--sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt1
1 files changed, 0 insertions, 1 deletions
diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt
index 08e5f3d9..2ad98c8e 100644
--- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt
+++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/redux/sagas/Sagas.kt
@@ -17,7 +17,6 @@ import webpack.isProdEnv
typealias SwSagaContext = SagaContext<SwState, RAction, WrapperAction>
-@OptIn(ExperimentalCoroutinesApi::class)
suspend fun SwSagaContext.rootSaga() = try {
coroutineScope {
val action = next<RequestChooseName>()
bgstack15