From fa9ca548b4741a0a64fe730a44d36ce51fac35cc Mon Sep 17 00:00:00 2001 From: Ferdinando Papale <4850119+papafe@users.noreply.github.com> Date: Mon, 3 Jul 2023 10:37:55 +0200 Subject: [PATCH] Removed this --- packages/realm/src/app-services/Sync.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/realm/src/app-services/Sync.ts b/packages/realm/src/app-services/Sync.ts index 5bce6eea9f..24a5b6fb57 100644 --- a/packages/realm/src/app-services/Sync.ts +++ b/packages/realm/src/app-services/Sync.ts @@ -195,10 +195,10 @@ export class Sync { * The default behavior settings if you want to open a synchronized Realm immediately and start working on it. * If this is the first time you open the Realm, it will be empty while the server data is being downloaded in the background. */ - static openLocalRealmBehavior = this.defaultLocalOpenRealmConfiguration; + static openLocalRealmBehavior = Sync.defaultLocalOpenRealmConfiguration; /** * The default behavior settings if you want to wait for downloading a synchronized Realm to complete before opening it. */ - static downloadBeforeOpenBehavior = this.defaultSyncOpenRealmConfiguration; + static downloadBeforeOpenBehavior = Sync.defaultSyncOpenRealmConfiguration; }