Skip to content

Commit 287f5a9

Browse files
committed
fix: Fix the issue where metadata image cannot be displayed properly
1 parent 9e2d7de commit 287f5a9

6 files changed

+2
-3
lines changed

CHANGE_LOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
### Fixed
88

99
- Fix the issue where the pop-up window under the avatar dropdown menu cannot be displayed properly.
10+
- Fix the issue where metadata image cannot be displayed properly.
1011

1112
## v0.9.2
1213

CHANGE_LOG.zh_CN.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
### 修复
88

99
- 修复点击头像下拉菜单部分的弹窗无法正常显示的问题
10+
- 修复 metadata image 无法正常显示的问题
1011

1112
## v0.9.2
1213

File renamed without changes.
File renamed without changes.
File renamed without changes.

src/app/api/openai/route.ts

-3
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,6 @@ export async function POST(request: Request) {
102102

103103
if (!user) return ResErr({ error: 20002 });
104104

105-
console.log(124124);
106-
console.log(JSON.stringify(PREMIUM_MODELS), "PREMIUM_MODELS");
107-
108105
// audit user license
109106
if (
110107
user.license_type !== "premium" &&

0 commit comments

Comments
 (0)