We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c7c287 commit c6bee66Copy full SHA for c6bee66
packages/mask/popups/pages/Wallet/SyncTwitterCookies/index.tsx
@@ -54,8 +54,9 @@ async function getTwitterCookiesString(): Promise<string> {
54
.filter((x) => x.status === 'fulfilled')
55
.map((x) => (x as PromiseFulfilledResult<{ key: string; value?: string }>).value)
56
.filter((x) => x.value !== undefined)
57
- .reduce((acc, x) => ({ ...acc, [x.key]: x.value }), {})
58
- return JSON.stringify(cookies)
+ .map((x) => `${x.key}=${x.value}`)
+ .join('; ')
59
+ return cookies
60
}
61
62
enum DesktopSyncChannelStatus {
0 commit comments