diff --git a/apps/studio/components/interfaces/Account/Preferences/DashboardSettingsToggles.tsx b/apps/studio/components/interfaces/Account/Preferences/DashboardSettingsToggles.tsx index e13c4f853e..44dfd3784b 100644 --- a/apps/studio/components/interfaces/Account/Preferences/DashboardSettingsToggles.tsx +++ b/apps/studio/components/interfaces/Account/Preferences/DashboardSettingsToggles.tsx @@ -75,7 +75,6 @@ export const DashboardSettingsToggles = () => { name="queueOperationsEnabled" label="Queue table operations" description="Review and batch table edits in Table Editor before saving them to your database." - discussionsUrl="https://github.com/orgs/supabase/discussions/42460" onToggle={handleQueueOperationsToggle} isLast /> diff --git a/apps/studio/components/interfaces/Account/Preferences/DashboardToggle.tsx b/apps/studio/components/interfaces/Account/Preferences/DashboardToggle.tsx index 401d34108b..c52ca6e103 100644 --- a/apps/studio/components/interfaces/Account/Preferences/DashboardToggle.tsx +++ b/apps/studio/components/interfaces/Account/Preferences/DashboardToggle.tsx @@ -1,5 +1,3 @@ -import { ExternalLink } from 'lucide-react' -import Link from 'next/link' import type { ReactNode } from 'react' import type { FieldValues, Path, UseFormReturn } from 'react-hook-form' import { CardContent, FormControl_Shadcn_, FormField_Shadcn_, Switch } from 'ui' @@ -11,7 +9,6 @@ interface DashboardToggleProps { label: string description: ReactNode onToggle: (value: boolean) => void - discussionsUrl?: string isLast?: boolean } @@ -21,7 +18,6 @@ export function DashboardToggle({ label, description, onToggle, - discussionsUrl, isLast, }: DashboardToggleProps) { return ( @@ -30,29 +26,7 @@ export function DashboardToggle({ control={form.control} name={name} render={({ field }) => ( - - {description} - {discussionsUrl && ( - <> - {' '} - - Give feedback - - - - )} -

- } - > +