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
6 changes: 3 additions & 3 deletions frontend/src/components/app-config/data-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import type { ChangeEvent } from "react";
import type { FieldPath, UseFormReturn } from "react-hook-form";
import { Checkbox } from "@/components/ui/checkbox";
import {
FormControl,
FormDescription,
Expand Down Expand Up @@ -213,7 +212,8 @@ export const DataForm = ({
{renderDiscoveryForm("datasources.auto_discover_columns", "Columns")}
</div>

<FormField
{/* TODO: Issue with frontend being stuck */}
{/* <FormField
control={form.control}
name="diagnostics.sql_linter"
render={({ field }) => (
Expand All @@ -238,7 +238,7 @@ export const DataForm = ({
</FormDescription>
</div>
)}
/>
/> */}

<FormField
control={form.control}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ export class SQLLanguageAdapter
}),
];

const sqlLinterEnabled = lspConfig?.diagnostics?.sql_linter ?? false;
// TODO: Issue with frontend being stuck
const sqlLinterEnabled = false;

if (sqlLinterEnabled) {
const theme = store.get(resolvedThemeAtom);
Expand Down
Loading