Skip to content

Commit

Permalink
Merge pull request #49 from johnoliver/merge-ui
Browse files Browse the repository at this point in the history
Remove duplicate UI element
  • Loading branch information
dantelmomsft authored Oct 27, 2023
2 parents 0119649 + 2989c78 commit a10c986
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions app/frontend/src/pages/oneshot/OneShot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -313,17 +313,6 @@ export function Component(): JSX.Element {
onChange={onUseGroupsSecurityFilterChange}
/>
)}
<Dropdown
className={styles.oneshotSettingsSeparator}
label="Retrieval mode"
options={[
{ key: "hybrid", text: "Vectors + Text (Hybrid)", selected: retrievalMode == RetrievalMode.Hybrid, data: RetrievalMode.Hybrid },
{ key: "vectors", text: "Vectors", selected: retrievalMode == RetrievalMode.Vectors, data: RetrievalMode.Vectors },
{ key: "text", text: "Text", selected: retrievalMode == RetrievalMode.Text, data: RetrievalMode.Text }
]}
required
onChange={onRetrievalModeChange}
/>
{useLogin && <TokenClaimsDisplay />}
</Panel>
</div>
Expand Down

0 comments on commit a10c986

Please sign in to comment.