Gekidou MultiServers second part (#5963)

* Edit Server display name

* Lock iPhone to portrait and iPad to landscape

* Create actions for app global to store device token and multi server tutorial

* Add MutliServer tutorial on first use

* WebSocket reconnection priority

* have isRecordGlobalEqualToRaw to not check for value

* Return early on edit server if error is found

* Prepopulate server screen with last logged out server address and name

* Add CompassIcon to circleCI asset generation
This commit is contained in:
Elias Nahum
2022-02-17 10:42:06 -03:00
committed by GitHub
parent 0158b088da
commit 5b9492356b
34 changed files with 1012 additions and 240 deletions

View File

@@ -9,5 +9,5 @@ export const isRecordInfoEqualToRaw = (record: InfoModel, raw: AppInfo) => {
};
export const isRecordGlobalEqualToRaw = (record: GlobalModel, raw: IdValue) => {
return raw.id === record.id && raw.value === record.value;
return raw.id === record.id;
};