Skip to content

Commit

Permalink
Issue #1029: removed unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
lorev101 authored and danielecalda committed Aug 7, 2024
1 parent 89d374c commit 3d1d00c
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions js-packages/admin-ui/src/components/EmbeddingModel.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
import { gql } from "@apollo/client";
import { useNavigate, useParams } from "react-router-dom";
import { useToast } from "./ToastProvider";
import {
useBucketQuery,
useCreateOrUpdateBucketMutation,
useCreateOrUpdateLanguageMutation,
useEmbeddingModelQuery,
useLanguageQuery,
useLargeLanguageModelQuery,
} from "../graphql-generated";
import { LanguagesQuery } from "./Languages";
import { ContainerFluid, CustomButtom, MainTitle, TextInput, fromFieldValidators, useForm } from "./Form";
import { useEmbeddingModelQuery } from "../graphql-generated";
import { ContainerFluid, MainTitle, TextInput } from "./Form";
import React from "react";

export const EmbeddingModelQuery = gql`
Expand Down Expand Up @@ -63,9 +55,6 @@ export function EmbeddingModel() {
validationMessages={[]}
value={apiUrl || ""}
/>
<div className="sheet-footer">
{/* <CustomButtom nameButton={languageId === "new" ? "Create" : "Update"} canSubmit={!form.canSubmit} typeSelectet="submit" /> */}
</div>
</form>
</ContainerFluid>
);
Expand Down

0 comments on commit 3d1d00c

Please sign in to comment.