Skip to content

Commit bc9eca5

Browse files
committed
Remove unnecessary flags
1 parent d31d9f9 commit bc9eca5

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

demos/example-vite/src/index.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,7 @@ let PowerSync;
3131
const openDatabase = async () => {
3232
PowerSync = new WASQLitePowerSyncDatabaseOpenFactory({
3333
schema: AppSchema,
34-
dbFilename: 'test.sqlite',
35-
flags: {
36-
// This is disabled once CSR+SSR functionality is verified to be working correctly
37-
disableSSRWarning: true
38-
}
34+
dbFilename: 'test.sqlite'
3935
}).getInstance();
4036

4137
await PowerSync.init();

demos/example-webpack/src/index.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,7 @@ let PowerSync;
3131
const openDatabase = async () => {
3232
PowerSync = new WASQLitePowerSyncDatabaseOpenFactory({
3333
schema: AppSchema,
34-
dbFilename: 'test.sqlite',
35-
flags: {
36-
// This is disabled once CSR+SSR functionality is verified to be working correctly
37-
disableSSRWarning: true
38-
}
34+
dbFilename: 'test.sqlite'
3935
}).getInstance();
4036

4137
await PowerSync.init();

0 commit comments

Comments
 (0)