Skip to content

Commit 46244fd

Browse files
committed
FIX import, optional
1 parent af5f950 commit 46244fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: client/src/services/taxa.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { HTTP } from '@/services/API'
55
interface Taxa {
66
domain: string
77
kingdom: string | null
8-
phylum: string | null
8+
phylum?: string | null
99
taxa_id: number
1010
taxa_name: string
1111
taxa_sname: string

Diff for: client/src/utils/search.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import {
22
type Selection,
33
type ModificationType,
44
type Technology,
5-
type Taxa,
65
type Cto
76
} from '@/services/selection'
7+
import { type Taxa } from '@/services/taxa'
88
import type { Chrom } from '@/services/chrom'
99

1010
type SearchBy = 'Modification' | 'Gene/Chrom'

0 commit comments

Comments
 (0)