linting
This commit is contained in:
parent
abc19e7a27
commit
5a00d1f295
4 changed files with 9 additions and 5 deletions
|
|
@ -34,7 +34,7 @@ export const DuplicateHandlingDialog: React.FC<
|
|||
<DialogTitle>Overwrite document</DialogTitle>
|
||||
<DialogDescription className="pt-2 text-muted-foreground">
|
||||
Overwriting will replace the existing document with another version.
|
||||
This can't be undone.
|
||||
This can't be undone.
|
||||
</DialogDescription>
|
||||
</DialogHeader>
|
||||
|
||||
|
|
|
|||
|
|
@ -11,6 +11,12 @@ const compat = new FlatCompat({
|
|||
|
||||
const eslintConfig = [
|
||||
...compat.extends("next/core-web-vitals", "next/typescript"),
|
||||
{
|
||||
rules: {
|
||||
"@typescript-eslint/no-unused-vars": "warn",
|
||||
"@typescript-eslint/no-explicit-any": "off",
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
export default eslintConfig;
|
||||
|
|
|
|||
|
|
@ -5,8 +5,6 @@ import {
|
|||
AccordionItem,
|
||||
AccordionTrigger,
|
||||
} from "@/components/ui/accordion";
|
||||
import { Separator } from "@/components/ui/separator";
|
||||
import { Switch } from "@/components/ui/switch";
|
||||
import { ModelSelector } from "./model-selector";
|
||||
|
||||
export function AdvancedOnboarding({
|
||||
|
|
|
|||
|
|
@ -854,7 +854,7 @@ function KnowledgeSourcesPage() {
|
|||
description={
|
||||
<>
|
||||
<p className="mb-2">
|
||||
You're entering Langflow. You can edit the{" "}
|
||||
You're entering Langflow. You can edit the{" "}
|
||||
<b>Agent flow</b> and other underlying flows. Manual
|
||||
changes to components, wiring, or I/O can break this
|
||||
experience.
|
||||
|
|
@ -1001,7 +1001,7 @@ function KnowledgeSourcesPage() {
|
|||
description={
|
||||
<>
|
||||
<p className="mb-2">
|
||||
You're entering Langflow. You can edit the{" "}
|
||||
You're entering Langflow. You can edit the{" "}
|
||||
<b>Ingest flow</b> and other underlying flows. Manual
|
||||
changes to components, wiring, or I/O can break this
|
||||
experience.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue