Skip to content
This repository was archived by the owner on Apr 18, 2024. It is now read-only.

Commit 8f8ea31

Browse files
committed
fix: format
1 parent 9314422 commit 8f8ea31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/[lang]/chatgpt/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ import * as UserAPI from "@/api/user";
88

99
export default async function ChatGPTPage() {
1010
const hashedKey = cookies().get(SITE_USER_COOKIE)?.value as string;
11-
console.log("hashedKey", hashedKey)
12-
console.log("cookes", cookies().getAll())
11+
console.log("hashedKey", hashedKey);
12+
console.log("cookes", cookies().getAll());
1313

1414
let isLoggedin = false;
1515
try {
1616
isLoggedin = await UserAPI.isLoggedIn(hashedKey);
1717
} catch (e) {
18-
console.error(e)
18+
console.error(e);
1919
isLoggedin = false;
2020
}
2121

0 commit comments

Comments
 (0)