Chore: fix some anys pt.2 (#53928)

* correctly type some more any's

* undo this change for now...
This commit is contained in:
Ashley Harrison
2022-08-22 16:51:33 +01:00
committed by GitHub
parent 2b17e5354a
commit 3cf95d7eee
42 changed files with 113 additions and 190 deletions

View File

@@ -51,7 +51,7 @@ export const LinkSettingsEdit: React.FC<LinkSettingsEditProps> = ({ editLinkIdx,
setLinkSettings(link);
};
const onTagsChange = (tags: any[]) => {
const onTagsChange = (tags: string[]) => {
onUpdate({ ...linkSettings, tags: tags });
};