save
This commit is contained in:
parent
63feb39dee
commit
c03d8fc4b2
|
@ -34,7 +34,6 @@ export async function createSession(userId: string) {
|
|||
|
||||
cookieStore.set('session', session, {
|
||||
httpOnly: true,
|
||||
secure: true,
|
||||
expires: expiresAt,
|
||||
sameSite: 'lax',
|
||||
path: '/',
|
||||
|
@ -53,7 +52,6 @@ export async function updateSession() {
|
|||
const cookieStore = await cookies()
|
||||
cookieStore.set('session', session, {
|
||||
httpOnly: true,
|
||||
secure: true,
|
||||
expires: expires,
|
||||
sameSite: 'lax',
|
||||
path: '/',
|
||||
|
|
|
@ -40,7 +40,6 @@ export default function LinkListBox({ linkTypeList, linkList, showHot, showRecen
|
|||
}
|
||||
}, [linkTypeList, setSelectSubType])
|
||||
useEffect(() => {
|
||||
console.log(currentId);
|
||||
|
||||
if (currentId) {
|
||||
// 根据 targetId 查找对应的元素
|
||||
|
|
Loading…
Reference in New Issue