diff --git a/src/components/Researcher/ActivityList/ActivityMethods.ts b/src/components/Researcher/ActivityList/ActivityMethods.ts index 5669caf8..1bc7c0d7 100644 --- a/src/components/Researcher/ActivityList/ActivityMethods.ts +++ b/src/components/Researcher/ActivityList/ActivityMethods.ts @@ -1008,6 +1008,15 @@ export const SchemaList = () => { }, }, }, + "lamp.dcog": { + type: "object", + properties: { + settings: { + title: i18n.t("Activity Settings"), + type: "object", + }, + }, + }, "lamp.dbt_diary_card": { type: "object", properties: { diff --git a/src/components/shared/AutoSuggest.tsx b/src/components/shared/AutoSuggest.tsx index 5fb14777..330a7a85 100644 --- a/src/components/shared/AutoSuggest.tsx +++ b/src/components/shared/AutoSuggest.tsx @@ -73,10 +73,6 @@ export default function AutoSuggest(props) { setValue(newValue) } - useEffect(() => { - console.log(props) - }, [props]) - // Autosuggest will call this function every time you need to update suggestions. // You already implemented this logic above, so just use it. const onSuggestionsFetchRequested = ({ value }) => {