Skip to content

Commit

Permalink
[frontend]TS issues (#7400)
Browse files Browse the repository at this point in the history
  • Loading branch information
CelineSebe committed Sep 26, 2024
1 parent cbb8352 commit ebf0b38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ const FeedCreation: FunctionComponent<FeedCreationFormProps> = (props) => {
const { onDrawerClose, open, paginationOptions, isDuplicated, feed } = props;
const classes = useStyles();
const { t_i18n } = useFormatter();
const [selectedTypes, setSelectedTypes] = useState(feed?.feed_types);
const [selectedTypes, setSelectedTypes] = useState(feed?.feed_types ?? []);
const [filters, helpers] = useFiltersState(emptyFilterGroup);

const completeFilterKeysMap: Map<string, Map<string, FilterDefinition>> = useFetchFilterKeysSchema();
Expand Down

0 comments on commit ebf0b38

Please sign in to comment.