We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa703e0 commit 12c1557Copy full SHA for 12c1557
demos/supabase-todolist/lib/powersync.dart
@@ -171,11 +171,7 @@ Future<void> openDatabase() async {
171
// If the user is already logged in, connect immediately.
172
// Otherwise, connect once logged in.
173
currentConnector = SupabaseConnector();
174
- db.connect(
175
- connector: currentConnector,
176
- options: const SyncOptions(
177
- syncImplementation: SyncClientImplementation.rust,
178
- appMetadata: {'app_version': '1.0.1'}));
+ db.connect(connector: currentConnector, options: options);
179
}
180
181
Supabase.instance.client.auth.onAuthStateChange.listen((data) async {
0 commit comments