meta: cause rebuild with console.log removals

This commit is contained in:
Matilde Park 2021-06-16 13:24:04 -05:00
parent 307a361275
commit 1c77adafc6
3 changed files with 0 additions and 4 deletions

View File

@ -30,7 +30,6 @@ export const LinkItem = React.forwardRef((props: LinkItemProps, ref: RefObject<H
resource,
api,
group,
path,
...rest
} = props;
@ -49,7 +48,6 @@ export const LinkItem = React.forwardRef((props: LinkItemProps, ref: RefObject<H
function onBlur() {
// FF will only update on next tick
setTimeout(() => {
console.log(remoteRef.current);
if(document.activeElement instanceof HTMLIFrameElement
// @ts-ignore forwardref prop passing
&& remoteRef?.current?.containerRef?.contains(document.activeElement)) {

View File

@ -50,7 +50,6 @@ function FallbackRoutes(props: { query: URLSearchParams }) {
if (query.has('ext')) {
const ext = query.get('ext')!;
const url = `/perma${ext.slice(16)}`;
console.log(url);
return <Redirect to={{ pathname: url }} />;
}

View File

@ -73,7 +73,6 @@ function getLinkPermalink(
const res = _.reduce(
idx,
(acc, val, i) => {
console.log(acc);
if (i === 0) {
return { ...acc, pathname: `${acc.pathname}/index/${val}` };
} else if (i === 1) {