瀏覽代碼

fix lint error

Shun Miyazawa 11 月之前
父節點
當前提交
83850c6b20
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      apps/app/src/features/openai/client/services/ai-assistant.ts

+ 1 - 1
apps/app/src/features/openai/client/services/ai-assistant.ts

@@ -7,7 +7,7 @@ export const createAiAssistant = async(body: UpsertAiAssistantData): Promise<voi
 };
 
 export const updateAiAssistant = async(id: string, body: UpsertAiAssistantData): Promise<AiAssistantHasId> => {
-  const res  = await apiv3Put<{updatedAiAssistant: AiAssistantHasId}>(`/openai/ai-assistant/${id}`, body);
+  const res = await apiv3Put<{updatedAiAssistant: AiAssistantHasId}>(`/openai/ai-assistant/${id}`, body);
   return res.data.updatedAiAssistant;
 };