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