Skip to content

Commit

Permalink
ui(fim): remove choices
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcMcIntosh committed Apr 5, 2024
1 parent 2693775 commit 3013804
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/components/FIMDebug/FIMDebug.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import React from "react";
import { Flex, Section, Heading, Code, DataList } from "@radix-ui/themes";
import {
Flex,
Section,
Heading,
// Code,
DataList,
} from "@radix-ui/themes";
import type { FimDebugData } from "../../services/refact";
import { SearchContext } from "./SearchContext";

Expand Down Expand Up @@ -39,7 +45,7 @@ export const FIMDebug: React.FC<FimDebugProps> = ({ data }) => {
</DataList.Root>
</Section>

<Heading size="5">Choices</Heading>
{/* <Heading size="5">Choices</Heading>
<Section size="1">
{data.choices.map((choice, i) => {
return (
Expand Down Expand Up @@ -67,7 +73,7 @@ export const FIMDebug: React.FC<FimDebugProps> = ({ data }) => {
</DataList.Root>
);
})}
</Section>
</Section> */}

<Heading size="5" mb="1">
Search Context
Expand Down

0 comments on commit 3013804

Please sign in to comment.