Skip to content

Commit 49880fd

Browse files
fixed type error
1 parent d42e452 commit 49880fd

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

bun.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Context.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export const Provider = ({children}: ProviderProps) => {
6464
const [csvData, setCSVData] = useState<string>(initialState.csvData)
6565
const [top5Sequences, setTop5Sequences] = useState<SequenceCount[] | null>(initialState.top5Sequences)
6666
const [selectedSequence, setSelectedSequence] = useState<SequenceCount["sequence"] | undefined>(initialState.selectedSequence);
67-
const [f3L3, setF3L3] = useState<boolean | null>(initialState.f3L3)
67+
const [f3L3, setF3L3] = useState<boolean>(initialState.f3L3)
6868
// const queryClient = useQueryClient();
6969

7070
// const { data: uploadedData } = useQuery<GlobalDataType[]>({

0 commit comments

Comments
 (0)