fix: remove log to console

This commit is contained in:
Akuoko Daniel Jnr 2021-03-12 12:26:53 +00:00
parent 13f43f05d1
commit 97bf545acd
No known key found for this signature in database
GPG Key ID: 1C95803CACD3E9DC

View File

@ -209,7 +209,7 @@ const Dropdown = ({ open, setOpen, tags, value, handleAdd, handleRemove }) => {
React.useEffect(async () => {
const results = await Actions.getTagsByUserId();
console.log(results.tags);
setAllTagsOnSlate(results.tags);
setLoadingStatus(true);
}, []);