Skip to content

Commit 99608da

Browse files
committed
PR feedback
1 parent 5cae70b commit 99608da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages-exp/auth-compat-exp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
},
3939
"license": "Apache-2.0",
4040
"devDependencies": {
41-
"@firebase/app": "0.6.11",
41+
"@firebase/app-compat": "0.x",
4242
"rollup": "2.28.1",
4343
"rollup-plugin-json": "4.0.0",
4444
"rollup-plugin-replace": "2.2.0",

packages-exp/auth-compat-exp/src/user.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { unwrap, Wrapper } from './wrap';
2727
export class User implements compat.User, Wrapper<externs.User> {
2828
// Maintain a map so that there's always a 1:1 mapping between new User and
2929
// legacy compat users
30-
private static readonly USER_MAP = new Map<externs.User, User>();
30+
private static readonly USER_MAP = new WeakMap<externs.User, User>();
3131

3232
readonly multiFactor: compat.MultiFactorUser;
3333

0 commit comments

Comments
 (0)