fix: build

This commit is contained in:
Hk-Gosuto 2025-01-04 16:26:56 +08:00
parent 21bf685d12
commit c1d1cafd10
4 changed files with 7 additions and 8 deletions

View File

@ -840,7 +840,7 @@ export function ChatActions(props: {
/>
)}
{showPlugins(currentProviderName, currentModel) && (
{/* {showPlugins(currentProviderName, currentModel) && (
<ChatAction
onClick={() => {
if (pluginStore.getAll().length == 0) {
@ -852,7 +852,7 @@ export function ChatActions(props: {
text={Locale.Plugin.Name}
icon={<PluginIcon />}
/>
)}
)} */}
{showPluginSelector && (
<Selector
multiple

View File

@ -19,7 +19,6 @@ import ConfirmIcon from "../icons/confirm.svg";
import ConnectionIcon from "../icons/connection.svg";
import CloudSuccessIcon from "../icons/cloud-success.svg";
import CloudFailIcon from "../icons/cloud-fail.svg";
import { trackSettingsPageGuideToCPaymentClick } from "../utils/auth-settings-events";
import {
Input,
List,

View File

@ -18,9 +18,9 @@ export type Plugin = {
enable: boolean;
onlyNodeRuntime: boolean;
title: string;
version: string;
content: string;
title?: string;
version?: string;
content?: string;
authType?: string;
authLocation?: string;
authHeader?: string;

View File

@ -122,7 +122,7 @@ export function base64Image2Blob(base64Data: string, contentType: string) {
return new Blob([byteArray], { type: contentType });
}
export function uploadImage(file: File): Promise<string> {
export function uploadImage(file: Blob): Promise<string> {
if (!window._SW_ENABLED) {
// if serviceWorker register error, using compressImage
return compressImage(file, 256 * 1024);
@ -137,7 +137,7 @@ export function uploadImage(file: File): Promise<string> {
})
.then((res) => res.json())
.then((res) => {
console.log("res", res);
// console.log("res", res);
if (res?.code == 0 && res?.data) {
return res?.data;
}