File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
demos/supabase-todolist/lib
packages/powersync_core/test/sync Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ Future<void> openDatabase() async {
173173 currentConnector = SupabaseConnector ();
174174 db.connect (
175175 connector: currentConnector,
176- options: SyncOptions (
176+ options: const SyncOptions (
177177 syncImplementation: SyncClientImplementation .rust,
178178 appMetadata: {'app_version' : '1.0.1' }));
179179 }
Original file line number Diff line number Diff line change @@ -280,6 +280,7 @@ void main() {
280280
281281 test ('passes app metadata to the server (legacy sync client)' , () async {
282282 options = SyncOptions (
283+ // ignore: deprecated_member_use
283284 syncImplementation: SyncClientImplementation .dart,
284285 appMetadata: {'foo' : 'bar' },
285286 );
You can’t perform that action at this time.
0 commit comments