Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 90b0a82d authored by Simon Chan's avatar Simon Chan
Browse files

chore: fix build

parent 255a64ca
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ const GridCellWrapper = withDisplayName('GridCellWrapper')(({
        width: columnWidth,
        height: rowHeight,
        transform: `translateX(${columnOffset}px)`,
    }), [rowIndex, rowHeight, columnWidth, columnOffset]);
    }), [rowHeight, columnWidth, columnOffset]);

    return (
        <CellComponent
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ export const ResizeObserver = withDisplayName('ResizeObserver')(({
            iframeRef.contentWindow!.addEventListener('resize', handleResize);
            handleResize();
        }
    }, [iframeRef]);
    }, [iframeRef, handleResize]);

    return (
        <iframe ref={setIframeRef} className={classes.observer} />
+2 −1
Original line number Diff line number Diff line
@@ -215,13 +215,14 @@ const PacketLog: NextPage = () => {
                {columns[columnIndex].title}
            </div>
        );
    }), []);
    }), [classes.header, columns]);

    const Row = useMemo(() => withDisplayName('Row')(({
        className,
        rowIndex,
        ...rest
    }: GridRowProps) => {
        /* eslint-disable-next-line */
        const handleClick = useCallbackRef(() => {
            setSelectedRowIndex(rowIndex);
        });