fix(ios): always remove splash screen

pull/6479/head
Andelf 2022-08-25 17:59:32 +08:00
parent fee4c3764e
commit cfb6495378
1 changed files with 3 additions and 3 deletions

View File

@ -211,9 +211,9 @@
(p/let [repos (get-repos)]
(state/set-repos! repos)
(restore-and-setup! repos db-schema)
(when (mobile-util/native-platform?)
(p/do! (mobile-util/hide-splash))))
(restore-and-setup! repos db-schema))
(when (mobile-util/native-platform?)
(p/do! (mobile-util/hide-splash)))
(db/run-batch-txs!)
(file-handler/run-writes-chan!)