Skip to content

Commit f13d863

Browse files
committed
Keep embedded with clear state
1 parent 5b208c5 commit f13d863

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

web/src/state/store.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -531,11 +531,8 @@ const migrations = {
531531
}
532532
}
533533

534-
const BLACKLIST = ['billing', 'cache', userStateApi.reducerPath]
535534
const isEmbedded = getParsedIframeInfo().isEmbedded as unknown === 'true'
536-
if (isEmbedded) {
537-
BLACKLIST.push('auth')
538-
}
535+
const BLACKLIST = isEmbedded ? [] : ['billing', 'cache', userStateApi.reducerPath]
539536

540537
const persistConfig = {
541538
key: 'root',

0 commit comments

Comments
 (0)