react 19 type migration

This commit is contained in:
Carlos Valente
2025-07-12 19:33:26 +02:00
committed by Carlos Valente
parent 0eaec1f88f
commit a69c5f354c
2 changed files with 12 additions and 16 deletions
@@ -1,4 +1,4 @@
import { MutableRefObject, useEffect, useRef } from 'react';
import { RefObject, useEffect, useRef } from 'react';
import { IoEllipsisHorizontal } from 'react-icons/io5';
import { useSessionStorage } from '@mantine/hooks';
import { flexRender, Table } from '@tanstack/react-table';
@@ -22,7 +22,7 @@ interface EventRowProps {
eventIndex: number;
rowIndex: number;
isPast?: boolean;
selectedRef?: MutableRefObject<HTMLTableRowElement | null>;
selectedRef?: RefObject<HTMLTableRowElement | null>;
skip?: boolean;
colour?: string;
rowBgColour?: string;