소스 검색

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;
 };