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
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ import {

import EntryInput from '#components/entry/EntryInput';
import { GeoArea } from '#components/GeoMultiSelectInput';
import { WidgetHint } from '#types/newAnalyticalFramework';
import { Framework } from '#components/entry/types';
import {
PartialEntryType,
PartialAttributeType,
PartialEntryType,
} from '#components/entry/schema';

import styles from './styles.css';
Expand All @@ -35,8 +34,7 @@ interface Props<NAME extends string | number | undefined> {
geoAreaOptions: GeoArea[] | undefined | null;
onGeoAreaOptionsChange: React.Dispatch<React.SetStateAction<GeoArea[] | undefined | null>>;
predictionsLoading?: boolean;
hints: WidgetHint[] | undefined;
recommendations: PartialAttributeType[] | undefined;
recommendations?: PartialAttributeType[] | undefined;
predictionsErrored: boolean;
name: NAME;
messageText: string | undefined;
Expand All @@ -62,7 +60,6 @@ function AssistPopup<NAME extends string | number | undefined>(props: Props<NAME
geoAreaOptions,
onGeoAreaOptionsChange,
predictionsLoading,
hints,
predictionsErrored,
messageText,
recommendations,
Expand Down Expand Up @@ -133,7 +130,6 @@ function AssistPopup<NAME extends string | number | undefined>(props: Props<NAME
geoAreaOptions={geoAreaOptions}
onGeoAreaOptionsChange={onGeoAreaOptionsChange}
allWidgets={allWidgets}
widgetsHints={hints}
recommendations={recommendations}
emptyValueHidden
addButtonHidden
Expand Down
Loading
Loading