Skip to content

Commit dc38ea4

Browse files
committed
Remove parentheses around the root error
1 parent 722881a commit dc38ea4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/firestore/src/local/simple_db.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -328,9 +328,8 @@ export class SimpleDb {
328328
Code.FAILED_PRECONDITION,
329329
'Unable to open an IndexedDB connection. This could be due to running in a ' +
330330
'private browsing session on a browser whose private browsing sessions do not ' +
331-
'support IndexedDB. (' +
332-
error +
333-
')'
331+
'support IndexedDB: ' +
332+
error
334333
)
335334
);
336335
} else {

0 commit comments

Comments
 (0)