fix subscription flow on ios

This commit is contained in:
ammarahm-ed
2021-07-03 12:43:09 +05:00
parent 4957497553
commit 04ea20fe1a
6 changed files with 169 additions and 73 deletions

View File

@@ -33,7 +33,7 @@ async function loadDefaultNotes() {
try {
const isCreated = await MMKV.getItem('defaultNoteCreated');
if (isCreated) return;
const notes = await http.get('https://app.notesnook.com/notes/index.json');
const notes = await http.get('https://app.notesnook.com/notes/index_14.json');
if (!notes) return;
for (let note of notes) {
const content = await http.get(note.mobileContent);