Skip to content

Commit 5546e3e

Browse files
committed
a few import fixes
1 parent a3f5a3a commit 5546e3e

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

app/components/CapacityBar.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
* Copyright Oxide Computer Company
77
*/
88

9+
import type { JSX } from 'react'
10+
911
import { BigNum } from '~/ui/lib/BigNum'
1012
import { percentage, splitDecimal } from '~/util/math'
1113

app/components/DocsPopover.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
import { Popover, PopoverButton, PopoverPanel } from '@headlessui/react'
1010
import cn from 'classnames'
11+
import type { JSX } from 'react'
1112

1213
import { Info16Icon, OpenLink12Icon } from '@oxide/design-system/icons/react'
1314

app/components/TimeAgo.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
* Copyright Oxide Computer Company
77
*/
88
import type { Placement } from '@floating-ui/react'
9+
import type { JSX } from 'react'
910

1011
import { Tooltip } from '~/ui/lib/Tooltip'
1112
import { timeAgoAbbr, toLocaleDateTimeString } from '~/util/date'

app/util/children.spec.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*
66
* Copyright Oxide Computer Company
77
*/
8+
import type { JSX } from 'react'
89
import { describe, expect, it } from 'vitest'
910

1011
import { flattenChildren, isOneOf, pluckAllOfType, pluckFirstOfType } from './children'

0 commit comments

Comments
 (0)