From a782590f85d4de0d646b2a6269fe83d9fb4afdf9 Mon Sep 17 00:00:00 2001 From: Arman Date: Fri, 30 May 2025 16:28:57 +0200 Subject: [PATCH] fix: import --- src/routes/(console)/apply-credit/+page.svelte | 2 +- src/routes/(console)/create-organization/+page.svelte | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/(console)/apply-credit/+page.svelte b/src/routes/(console)/apply-credit/+page.svelte index 276b5be13..dbb3add04 100644 --- a/src/routes/(console)/apply-credit/+page.svelte +++ b/src/routes/(console)/apply-credit/+page.svelte @@ -5,7 +5,7 @@ import { Submit, trackError, trackEvent } from '$lib/actions/analytics'; import { CreditsApplied, SelectPaymentMethod } from '$lib/components/billing'; import { BillingPlan, Dependencies } from '$lib/constants'; - import { Button, type Form, InputSelect, InputTags, InputText } from '$lib/elements/forms'; + import { Button, Form, InputSelect, InputTags, InputText } from '$lib/elements/forms'; import { toLocaleDate } from '$lib/helpers/date'; import { Wizard } from '$lib/layout'; import type { PaymentList, Plan } from '$lib/sdk/billing'; diff --git a/src/routes/(console)/create-organization/+page.svelte b/src/routes/(console)/create-organization/+page.svelte index 7411b7a08..d6aa47b66 100644 --- a/src/routes/(console)/create-organization/+page.svelte +++ b/src/routes/(console)/create-organization/+page.svelte @@ -6,7 +6,7 @@ import { PlanComparisonBox, PlanSelection, SelectPaymentMethod } from '$lib/components/billing'; import ValidateCreditModal from '$lib/components/billing/validateCreditModal.svelte'; import { BillingPlan, Dependencies } from '$lib/constants'; - import { Button, type Form, InputTags, InputText } from '$lib/elements/forms'; + import { Button, Form, InputTags, InputText } from '$lib/elements/forms'; import { Wizard } from '$lib/layout'; import type { Coupon } from '$lib/sdk/billing'; import { isOrganization, tierToPlan } from '$lib/stores/billing';