feat(698): fix correct order of blocks from CS

This commit is contained in:
Matilda Landström
2024-10-29 09:20:27 +01:00
parent 24384c08f3
commit 4bd089ab2a
3 changed files with 32 additions and 9 deletions

View File

@@ -4,7 +4,6 @@ import {
blocksSchema,
contentPageRefsSchema,
contentPageSchema,
contentPageSchemaBlocks,
sidebarSchema,
} from "@/server/routers/contentstack/contentPage/output"
@@ -21,4 +20,6 @@ export interface ContentPage extends z.output<typeof contentPageSchema> {}
export type Block = z.output<typeof blocksSchema>
export type GetBlock = z.input<typeof blocksSchema>
export type SidebarBlock = z.output<typeof sidebarSchema>