Merge branch 'release/@standardnotes/app-monorepo@0.0.6'

This commit is contained in:
Mo
2022-06-18 10:47:39 -05:00
3 changed files with 9 additions and 1 deletions

View File

@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [3.23.8-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.7...@standardnotes/mobile@3.23.8-alpha.0) (2022-06-18)
### Bug Fixes
* **mobile:** white screen issue with switching notes on iPad ([ea37bbe](https://github.com/standardnotes/app/commit/ea37bbe53fb46269bd1d13bd5cf85d328690c232))
## [3.23.7](https://github.com/standardnotes/app/compare/@standardnotes/mobile@3.23.7-alpha.0...@standardnotes/mobile@3.23.7) (2022-06-18)
**Note:** Version bump only for package @standardnotes/mobile

View File

@@ -1,6 +1,6 @@
{
"name": "@standardnotes/mobile",
"version": "3.23.7",
"version": "3.23.8-alpha.0",
"author": "Standard Notes.",
"private": true,
"license": "AGPL-3.0-or-later",

View File

@@ -53,6 +53,8 @@ export const Root = () => {
const removeNoteObserver = application?.editorGroup.addActiveControllerChangeObserver(activeController => {
if (activeController instanceof NoteViewController) {
setActiveNoteView(activeController)
} else {
setActiveNoteView(undefined)
}
})