Skip to content

Commit

Permalink
slight type tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
charliepark committed Oct 22, 2024
1 parent ef1c452 commit 4e93c7a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/forms/floating-ip-create.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ import { SideModalForm } from '~/components/form/SideModalForm'
import { useProjectSelector } from '~/hooks/use-params'
import { addToast } from '~/stores/toast'
import { Badge } from '~/ui/lib/Badge'
import type { ComboboxItem } from '~/ui/lib/Combobox'
import { Message } from '~/ui/lib/Message'
import { ALL_ISH } from '~/util/consts'
import { pb } from '~/util/path-builder'

const toComboboxItem = (p: SiloIpPool) => {
const toComboboxItem = (p: SiloIpPool): ComboboxItem => {
const value = p.name
const selectedLabel = p.name
const label = (
Expand Down

0 comments on commit 4e93c7a

Please sign in to comment.