update settings api (#121)

* update settings api

* chore: auto-fix linting and formatting issues
This commit is contained in:
UUBulb
2025-02-28 22:00:07 +08:00
committed by GitHub
parent 41d4d7fc69
commit 1ee664f09b
3 changed files with 53 additions and 74 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ import {
import { useAuth } from "@/hooks/useAuth"
import useSettings from "@/hooks/useSetting"
import { copyToClipboard } from "@/lib/utils"
import { ModelConfig, ModelProfile } from "@/types"
import { ModelProfile, ModelSetting } from "@/types"
import i18next from "i18next"
import { Check, Clipboard } from "lucide-react"
import { forwardRef, useState } from "react"
@@ -88,7 +88,7 @@ export const InstallCommandsMenu = forwardRef<HTMLButtonElement, ButtonProps>((p
const generateCommand = (
type: number,
{ agent_secret_key, install_host, tls }: ModelConfig,
{ agent_secret_key, install_host, tls }: ModelSetting,
{ agent_secret, role }: ModelProfile,
) => {
if (!install_host) throw new Error(i18next.t("Results.InstallHostRequired"))