fix: use access_token

This commit is contained in:
himself65
2023-03-30 18:35:01 -05:00
parent f935bbaf5d
commit acac585eb2
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ const createAffineWebSocketProvider = (
blockSuiteWorkspace.id,
blockSuiteWorkspace.doc,
{
params: { token: getLoginStorage()?.refresh ?? '' },
params: { token: getLoginStorage()?.token ?? '' },
// @ts-expect-error ignore the type
awareness: blockSuiteWorkspace.awarenessStore.awareness,
// we maintain broadcast channel by ourselves
@@ -89,7 +89,7 @@ describe('ydoc sync', () => {
BlockSuiteWorkspace.Y.applyUpdate(workspace1.doc, new Uint8Array(binary));
BlockSuiteWorkspace.Y.applyUpdate(workspace2.doc, new Uint8Array(binary));
const provider1 = new KeckProvider(wsUrl, workspace1.id, workspace1.doc, {
params: { token: user1Token.refresh },
params: { token: user1Token.token },
// @ts-expect-error ignore the type
awareness: workspace1.awarenessStore.awareness,
disableBc: true,
@@ -97,7 +97,7 @@ describe('ydoc sync', () => {
});
const provider2 = new KeckProvider(wsUrl, workspace2.id, workspace2.doc, {
params: { token: user2Token.refresh },
params: { token: user2Token.token },
// @ts-expect-error ignore the type
awareness: workspace2.awarenessStore.awareness,
disableBc: true,