Skip to content

Commit ba8430e

Browse files
fix lint
1 parent 92eb097 commit ba8430e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

demos/supabase-todolist/lib/powersync.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

packages/powersync_core/test/sync/stream_test.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
);

0 commit comments

Comments
 (0)