refactor(federation): 🚚 Remove custom path alias

This commit is contained in:
Jesse Wierzbinski 2024-07-23 00:11:05 +02:00
parent 1529708dd8
commit 2313bcbbcc
No known key found for this signature in database
13 changed files with 30 additions and 37 deletions

View file

@ -1,3 +1,5 @@
import type { z } from "zod";
import { fromError } from "zod-validation-error";
import {
ActionSchema,
ActorPublicKeyDataSchema,
@ -20,9 +22,7 @@ import {
UserSchema,
VanityExtensionSchema,
VisibilitySchema,
} from "@/federation/schemas/base";
import type { z } from "zod";
import { fromError } from "zod-validation-error";
} from "../schemas/base";
// biome-ignore lint/suspicious/noExplicitAny: Used only as a base type
type AnyZod = z.ZodType<any, any, any>;