diff --git a/apps/web/components/Dashboard/Pages/Org/OrgEditGeneral/OrgEditGeneral.tsx b/apps/web/components/Dashboard/Pages/Org/OrgEditGeneral/OrgEditGeneral.tsx index 41b09c65..298b9c0f 100644 --- a/apps/web/components/Dashboard/Pages/Org/OrgEditGeneral/OrgEditGeneral.tsx +++ b/apps/web/components/Dashboard/Pages/Org/OrgEditGeneral/OrgEditGeneral.tsx @@ -20,6 +20,7 @@ import { mutate } from 'swr' import { getAPIUrl } from '@services/config/config' import Image from 'next/image' import learnhouseIcon from '@public/learnhouse_logo.png' +import Link from 'next/link' const ORG_LABELS = [ { value: 'languages', label: '🌐 Languages' }, @@ -86,7 +87,7 @@ const OrgEditGeneral: React.FC = () => { description: org?.description || '', about: org?.about || '', label: org?.label || '', - explore: org?.explore ?? true, + explore: org?.explore ?? false, } const updateOrg = async (values: OrganizationValues) => { @@ -216,7 +217,7 @@ const OrgEditGeneral: React.FC = () => {
@@ -238,7 +239,7 @@ const OrgEditGeneral: React.FC = () => {