Skip to content

Commit

Permalink
[Fix] 🐛 Create Conversation Error
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry-zklcdc committed Aug 26, 2023
1 parent be87917 commit 789f73d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/src/stores/modules/user/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const useUserStore = defineStore(
const userTokenCookieName = '_U';
const userKievRPSSecAuthCookieName = 'KievRPSSecAuth';
const userRwBfCookieName = '_RwBf';
const userMUIDCookieName = 'MUID';
const randIpCookieName = 'BingAI_Rand_IP';
const authKeyCookieName = 'BingAI_Auth_Key';
const cookiesStr = ref('');
Expand Down Expand Up @@ -66,6 +67,7 @@ export const useUserStore = defineStore(
};

const checkUserToken = () => {
cookies.set(userMUIDCookieName, '3AC75B6BED5B6C3B03384913EC756D93', 365 * 24 * 60, '/')
if (historyEnable.value) {
CIB.vm.sidePanel.isVisibleDesktop = true;
document.querySelector('cib-serp')?.setAttribute('alignment', 'left');
Expand Down

0 comments on commit 789f73d

Please sign in to comment.