From ea37bbe53fb46269bd1d13bd5cf85d328690c232 Mon Sep 17 00:00:00 2001 From: Mo Date: Sat, 18 Jun 2022 10:43:41 -0500 Subject: [PATCH 1/2] fix(mobile): white screen issue with switching notes on iPad --- packages/mobile/src/Screens/Root.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/mobile/src/Screens/Root.tsx b/packages/mobile/src/Screens/Root.tsx index 1669fe951..9925d919b 100644 --- a/packages/mobile/src/Screens/Root.tsx +++ b/packages/mobile/src/Screens/Root.tsx @@ -53,6 +53,8 @@ export const Root = () => { const removeNoteObserver = application?.editorGroup.addActiveControllerChangeObserver(activeController => { if (activeController instanceof NoteViewController) { setActiveNoteView(activeController) + } else { + setActiveNoteView(undefined) } }) From a589a81ecff76b7650bc2f9eb93c9a5e044317cc Mon Sep 17 00:00:00 2001 From: StandardNotes CI Date: Sat, 18 Jun 2022 15:45:59 +0000 Subject: [PATCH 2/2] chore(release): publish - @standardnotes/mobile@3.23.8-alpha.0 --- packages/mobile/CHANGELOG.md | 6 ++++++ packages/mobile/package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/mobile/CHANGELOG.md b/packages/mobile/CHANGELOG.md index be4bafdca..01bedfca8 100644 --- a/packages/mobile/CHANGELOG.md +++ b/packages/mobile/CHANGELOG.md @@ -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 diff --git a/packages/mobile/package.json b/packages/mobile/package.json index 36db373cf..c799baaeb 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -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",