Skip to content

Commit

Permalink
refactor(StrapiMeta): nullable breadcrumb
Browse files Browse the repository at this point in the history
  • Loading branch information
chohner committed Dec 17, 2024
1 parent 794860f commit 28a0521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/cms/models/StrapiMeta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const StrapiMetaSchema = z.object({
title: z.string(),
description: z.string().nullable(),
ogTitle: z.string().nullable(),
breadcrumb: z.string(),
breadcrumb: z.string().nullable(),
});

export type StrapiMeta = z.infer<typeof StrapiMetaSchema>;

0 comments on commit 28a0521

Please sign in to comment.