chore: derp

This commit is contained in:
cha0s 2022-03-16 11:23:25 -05:00
parent 85ebf2d33e
commit c76d1da8d1
2 changed files with 0 additions and 2 deletions

View File

@ -56,7 +56,6 @@ function Project({uuid}) {
<ResourceRoute uri={uri} uuid={uuid} /> <ResourceRoute uri={uri} uuid={uuid} />
), ),
}); });
console.log(iconPages);
return ( return (
<div className={locals.project} ref={ref}> <div className={locals.project} ref={ref}>
<IconPages <IconPages

View File

@ -18,7 +18,6 @@ const ResourceRoute = ({uri, uuid}) => {
dispatch(fetchProjectResource({uri, uuid})); dispatch(fetchProjectResource({uri, uuid}));
return null; return null;
} }
console.log({resource});
return <Resource resource={resource} />; return <Resource resource={resource} />;
}; };