Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions frontends/chat/src/components/ScoreChunk.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ import {
} from "../utils/apiTypes";
import { BiRegularChevronDown, BiRegularChevronUp } from "solid-icons/bi";
import sanitizeHtml from "sanitize-html";
import { Tooltip } from "shared/ui";
import { AiOutlineCopy } from "solid-icons/ai";
import { FiCheck, FiExternalLink, FiGlobe } from "solid-icons/fi";
import { FiCheck, FiExternalLink } from "solid-icons/fi";

export const sanitzerOptions = {
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access
Expand Down Expand Up @@ -105,10 +104,6 @@ const ScoreChunk = (props: ScoreChunkProps) => {
>
<div class="flex w-full flex-col space-y-2 dark:text-white">
<div class="flex h-fit items-center space-x-1">
<Tooltip
body={<FiGlobe class="z-50 h-5 w-5 text-green-500" />}
tooltipText="Publicly visible"
/>
<span class="font-semibold">Doc: {props.counter}</span>
<div class="flex-1" />
<Show when={!copied()}>
Expand Down
1 change: 1 addition & 0 deletions server/src/operators/words_operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ impl BkTree {
}

/// Iterator over BK-tree elements
#[allow(dead_code)]
pub struct IntoIter {
queue: Vec<Node>,
}
Expand Down