🎨 Use separate import types (#1826)

This commit is contained in:
Luke Vella 2025-07-15 11:31:33 +01:00 committed by GitHub
parent e94eed373d
commit f79416e695
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 53 additions and 35 deletions

View file

@ -21,7 +21,8 @@ import { useTimezone } from "@/features/timezone";
import { useTranslation } from "@/i18n/client";
import { completeSetupAction } from "../actions";
import { type SetupFormValues, setupSchema } from "../schema";
import type { SetupFormValues } from "../schema";
import { setupSchema } from "../schema";
interface SetupFormProps {
defaultValues?: Partial<SetupFormValues>;